flake/nixos/sudo.nix

17 lines
234 B
Nix
Raw Normal View History

2024-11-16 13:38:09 -05:00
{
security.sudo.extraRules = [
{
users = [ "cswimr" ];
commands = [
{
command = "ALL";
options = [
"SETENV"
"NOPASSWD"
];
}
];
}
];
2024-11-16 13:38:09 -05:00
}