Add network manager to the workstation level

This commit is contained in:
bad 2021-10-29 18:16:07 +02:00
parent 29c0036fce
commit 7939bc2fdd
2 changed files with 16 additions and 2 deletions

View file

@ -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 ];
}

View file

@ -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"
'';
};
}