diff --git a/suites/default.nix b/suites/default.nix index 25e3e19..6893a73 100644 --- a/suites/default.nix +++ b/suites/default.nix @@ -1,7 +1,7 @@ { profiles, ... }: with profiles; rec { base = [ users.root core dnscrypt ]; - workstation = base ++ [ sway develop game profiles.workstation ssh flatpak torrents pwn tor rust virtualization java pipewire ]; + workstation = base ++ [ sway develop game profiles.workstation ssh flatpak torrents pwn tor rust virtualization java pipewire networkmanager ]; desktop = workstation ++ [ users.mae-desk amd three_dee androidev ]; - lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager androidev ]; + lap = workstation ++ [ users.mae-lap laptop bluetooth print androidev ]; } diff --git a/users/profiles/tmux/default.nix b/users/profiles/tmux/default.nix new file mode 100644 index 0000000..ff640a0 --- /dev/null +++ b/users/profiles/tmux/default.nix @@ -0,0 +1,14 @@ +{ + programs.tmux = { + enable = true; + escapeTime = 0; + historyLimit = 5000; + terminal = "screen-256color"; + extraConfig = '' + bind c new-window -c "#{pane_current_path}" + + set -ga terminal-overrides ",alacritty:RGB" + set -ga terminal-overrides ",alacritty:Tc" + ''; + }; +}