1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Enable sudoedit

This commit is contained in:
Eelco Dolstra 2013-04-03 12:54:40 +02:00
parent 0139f015be
commit fef5a18587

View file

@ -31,7 +31,7 @@ in
''
Whether users of the <code>wheel</code> group can execute
commands as super user without entering a password.
'';
'';
};
security.sudo.configFile = mkOption {
@ -70,7 +70,7 @@ in
%wheel ALL=(ALL) ${if cfg.wheelNeedsPassword then "" else "NOPASSWD: ALL, "}SETENV: ALL
'';
security.setuidPrograms = [ "sudo" ];
security.setuidPrograms = [ "sudo" "sudoedit" ];
environment.systemPackages = [ sudo ];