diff --git a/systems/common.nix b/systems/common.nix index aff3766..b533d5e 100755 --- a/systems/common.nix +++ b/systems/common.nix @@ -84,6 +84,7 @@ programs.java.enable = true; security.polkit.enable = true; programs.zsh.enable = true; + security.sudo.wheelNeedsPassword = false; # System packages diff --git a/users/jsutter.nix b/users/jsutter.nix index edd4a09..37c3e4c 100755 --- a/users/jsutter.nix +++ b/users/jsutter.nix @@ -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"; }; };