16 lines
234 B
Nix
Executable file
16 lines
234 B
Nix
Executable file
{
|
|
security.sudo.extraRules = [
|
|
{
|
|
users = [ "cswimr" ];
|
|
commands = [
|
|
{
|
|
command = "ALL";
|
|
options = [
|
|
"SETENV"
|
|
"NOPASSWD"
|
|
];
|
|
}
|
|
];
|
|
}
|
|
];
|
|
}
|