flake/nixos/sudo.nix
2024-11-16 13:38:09 -05:00

9 lines
158 B
Nix
Executable file

{
security.sudo.extraRules = [{
users = [ "cswimr" ];
commands = [{
command = "ALL";
options = [ "SETENV" "NOPASSWD" ];
}];
}];
}