This commit is contained in:
Julian Sutter 2023-05-29 21:51:49 -07:00
parent 8af80b3760
commit 27518c8631
2 changed files with 2 additions and 5 deletions

View file

@ -84,6 +84,7 @@
programs.java.enable = true;
security.polkit.enable = true;
programs.zsh.enable = true;
security.sudo.wheelNeedsPassword = false;
# System packages

View file

@ -48,10 +48,6 @@ in
];
};
security.sudo.configFile = ''
jsutter ALL = (root) NOPASSWD:ALL
'';
# Steam
programs.steam = with pkgs; {
enable = true;
@ -104,7 +100,7 @@ in
};
oh-my-zsh = {
enable = true;
plugins = [ "git" "systemd" "rsync" "kubectl" "ansible" "battery" "colored-man-pages" "colorize" "common-aliases" "cp" "docker" "docker-compose" "docker-machine" "git-auto-fetch" "git-extras" "github" "git-prompt" "gnu-utils" "golang" "nmap" "postgres" "python" "rust" "ssh-agent" "sudo" "systemd" "thefuck" "ufw" "vscode" ];
plugins = [ "git" "systemd" "rsync" "kubectl" "ansible" "battery" "colored-man-pages" "colorize" "common-aliases" "cp" "docker" "docker-compose" "docker-machine" "git-auto-fetch" "git-extras" "github" "git-prompt" "gnu-utils" "golang" "nmap" "postgres" "python" "rust" "ssh-agent" "sudo" "systemd" "ufw" "vscode" ];
theme = "terminalparty";
};
};