2009-01-02 17:07:15 +01:00
|
|
|
|
{pkgs, config, ...}:
|
|
|
|
|
|
2009-08-16 16:49:14 +02:00
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
2009-01-02 17:07:15 +01:00
|
|
|
|
let
|
2009-08-16 16:49:14 +02:00
|
|
|
|
|
|
|
|
|
cfg = config.security.sudo;
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-08-16 16:49:14 +02:00
|
|
|
|
inherit (pkgs) sudo;
|
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
###### interface
|
2009-01-02 17:07:15 +01:00
|
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
2009-08-16 16:49:14 +02:00
|
|
|
|
security.sudo.enable = mkOption {
|
|
|
|
|
default = true;
|
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
Whether to enable the <command>sudo</command> command, which
|
|
|
|
|
allows non-root users to execute commands as root.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2012-08-13 14:37:32 +02:00
|
|
|
|
security.sudo.wheelNeedsPassword = mkOption {
|
|
|
|
|
default = true;
|
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
Whether users of the <code>wheel</code> group can execute
|
|
|
|
|
commands as super user without entering a password.
|
2013-04-03 12:54:40 +02:00
|
|
|
|
'';
|
2012-08-13 14:37:32 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-08-16 16:49:14 +02:00
|
|
|
|
security.sudo.configFile = mkOption {
|
|
|
|
|
# Note: if syntax errors are detected in this file, the NixOS
|
|
|
|
|
# configuration will fail to build.
|
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
This string contains the contents of the
|
|
|
|
|
<filename>sudoers</filename> file.
|
|
|
|
|
'';
|
2009-01-02 17:07:15 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2009-08-16 16:49:14 +02:00
|
|
|
|
###### implementation
|
2009-01-02 17:07:15 +01:00
|
|
|
|
|
2009-08-16 16:49:14 +02:00
|
|
|
|
config = mkIf cfg.enable {
|
2009-01-02 17:07:15 +01:00
|
|
|
|
|
2012-11-23 15:14:16 +01:00
|
|
|
|
security.sudo.configFile =
|
|
|
|
|
''
|
|
|
|
|
# Don't edit this file. Set the NixOS option ‘security.sudo.configFile’ instead.
|
|
|
|
|
|
|
|
|
|
# Environment variables to keep for root and %wheel.
|
|
|
|
|
Defaults:root,%wheel env_keep+=LOCALE_ARCHIVE
|
|
|
|
|
Defaults:root,%wheel env_keep+=NIX_CONF_DIR
|
|
|
|
|
Defaults:root,%wheel env_keep+=NIX_PATH
|
|
|
|
|
Defaults:root,%wheel env_keep+=TERMINFO_DIRS
|
|
|
|
|
|
|
|
|
|
# Keep SSH_AUTH_SOCK so that pam_ssh_agent_auth.so can do its magic.
|
|
|
|
|
Defaults env_keep+=SSH_AUTH_SOCK
|
|
|
|
|
|
|
|
|
|
# "root" is allowed to do anything.
|
|
|
|
|
root ALL=(ALL) SETENV: ALL
|
|
|
|
|
|
|
|
|
|
# Users in the "wheel" group can do anything.
|
|
|
|
|
%wheel ALL=(ALL) ${if cfg.wheelNeedsPassword then "" else "NOPASSWD: ALL, "}SETENV: ALL
|
|
|
|
|
'';
|
|
|
|
|
|
2013-04-03 12:54:40 +02:00
|
|
|
|
security.setuidPrograms = [ "sudo" "sudoedit" ];
|
2009-01-02 17:07:15 +01:00
|
|
|
|
|
2009-08-16 16:49:14 +02:00
|
|
|
|
environment.systemPackages = [ sudo ];
|
2009-01-02 17:07:15 +01:00
|
|
|
|
|
2012-06-12 00:41:07 +02:00
|
|
|
|
security.pam.services = [ { name = "sudo"; sshAgentAuth = true; } ];
|
2009-01-02 17:07:15 +01:00
|
|
|
|
|
2009-08-16 16:49:14 +02:00
|
|
|
|
environment.etc = singleton
|
2012-06-12 00:41:07 +02:00
|
|
|
|
{ source = pkgs.writeText "sudoers-in" cfg.configFile;
|
2009-01-02 17:07:15 +01:00
|
|
|
|
# Make sure that the sudoers file is syntactically valid.
|
|
|
|
|
# (currently disabled - NIXOS-66)
|
|
|
|
|
#"${pkgs.sudo}/sbin/visudo -f $src -c && cp $src $out";
|
|
|
|
|
target = "sudoers";
|
|
|
|
|
mode = "0440";
|
2009-08-16 16:49:14 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-01-02 17:07:15 +01:00
|
|
|
|
};
|
2009-08-16 16:49:14 +02:00
|
|
|
|
|
2009-01-02 17:07:15 +01:00
|
|
|
|
}
|