This commit is contained in:
Julian Sutter 2023-05-29 21:44:55 -07:00
parent ae8371e7e3
commit 8af80b3760

View file

@ -48,6 +48,10 @@ in
]; ];
}; };
security.sudo.configFile = ''
jsutter ALL = (root) NOPASSWD:ALL
'';
# Steam # Steam
programs.steam = with pkgs; { programs.steam = with pkgs; {
enable = true; enable = true;
@ -100,7 +104,7 @@ in
}; };
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
plugins = [ "git" "systemd" "rsync" "kubectl" "ansible" "battery"]; 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" ];
theme = "terminalparty"; theme = "terminalparty";
}; };
}; };