flake/nixos/sudo.nix

16 lines
234 B
Nix
Executable file

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