Add network manager to the workstation level
This commit is contained in:
parent
29c0036fce
commit
7939bc2fdd
2 changed files with 16 additions and 2 deletions
|
@ -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 ];
|
||||
}
|
||||
|
|
14
users/profiles/tmux/default.nix
Normal file
14
users/profiles/tmux/default.nix
Normal 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"
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue