jungle/m/eudy/users.nix

12 lines
215 B
Nix
Raw Permalink Normal View History

2023-05-05 20:18:01 +02:00
{ ... }:
{
security.sudo.extraRules= [{
users = [ "arocanon" ];
commands = [{
command = "ALL" ;
options= [ "NOPASSWD" ]; # "SETENV" # Adding the following could be a good idea
}];
}];
}