2009-08-16 23:48:46 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
2010-05-14 22:28:04 +02:00
|
|
|
let
|
2011-08-21 22:38:45 +02:00
|
|
|
|
|
|
|
cfg = config.security.polkit;
|
|
|
|
|
2010-05-14 22:28:04 +02:00
|
|
|
in
|
|
|
|
|
2009-08-16 23:48:46 +02:00
|
|
|
{
|
|
|
|
|
2011-08-21 22:38:45 +02:00
|
|
|
options = {
|
2009-08-16 23:48:46 +02:00
|
|
|
|
2011-08-21 22:38:45 +02:00
|
|
|
security.polkit.enable = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.bool;
|
2011-08-21 22:38:45 +02:00
|
|
|
default = true;
|
|
|
|
description = "Whether to enable PolKit.";
|
2010-05-14 22:28:04 +02:00
|
|
|
};
|
2009-08-16 23:48:46 +02:00
|
|
|
|
2013-11-09 16:29:18 +01:00
|
|
|
security.polkit.extraConfig = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.lines;
|
2011-08-21 22:38:45 +02:00
|
|
|
default = "";
|
|
|
|
example =
|
|
|
|
''
|
2013-11-18 18:01:07 +01:00
|
|
|
/* Log authorization checks. */
|
|
|
|
polkit.addRule(function(action, subject) {
|
|
|
|
polkit.log("user " + subject.user + " is attempting action " + action.id + " from PID " + subject.pid);
|
|
|
|
});
|
|
|
|
|
|
|
|
/* Allow any local user to do anything (dangerous!). */
|
|
|
|
polkit.addRule(function(action, subject) {
|
|
|
|
if (subject.local) return "yes";
|
|
|
|
});
|
2011-08-21 22:38:45 +02:00
|
|
|
'';
|
|
|
|
description =
|
|
|
|
''
|
2013-11-09 16:29:18 +01:00
|
|
|
Any polkit rules to be added to config (in JavaScript ;-). See:
|
|
|
|
http://www.freedesktop.org/software/polkit/docs/latest/polkit.8.html#polkit-rules
|
2011-08-21 22:38:45 +02:00
|
|
|
'';
|
2010-05-14 22:28:04 +02:00
|
|
|
};
|
2009-08-16 23:48:46 +02:00
|
|
|
|
2011-08-21 22:38:45 +02:00
|
|
|
security.polkit.adminIdentities = mkOption {
|
2013-11-18 17:45:31 +01:00
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ "unix-user:0" "unix-group:wheel" ];
|
|
|
|
example = [ "unix-user:alice" "unix-group:admin" ];
|
2011-08-21 22:38:45 +02:00
|
|
|
description =
|
|
|
|
''
|
|
|
|
Specifies which users are considered “administrators”, for those
|
|
|
|
actions that require the user to authenticate as an
|
2013-08-10 23:07:13 +02:00
|
|
|
administrator (i.e. have an <literal>auth_admin</literal>
|
2011-08-21 22:38:45 +02:00
|
|
|
value). By default, this is the <literal>root</literal>
|
|
|
|
user and all users in the <literal>wheel</literal> group.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2011-08-22 13:46:32 +02:00
|
|
|
environment.systemPackages = [ pkgs.polkit ];
|
2011-08-21 22:38:45 +02:00
|
|
|
|
2013-11-09 16:29:18 +01:00
|
|
|
systemd.packages = [ pkgs.polkit ];
|
|
|
|
|
|
|
|
# The polkit daemon reads action/rule files
|
|
|
|
environment.pathsToLink = [ "/share/polkit-1" ];
|
|
|
|
|
2013-11-18 17:33:20 +01:00
|
|
|
# PolKit rules for NixOS.
|
|
|
|
environment.etc."polkit-1/rules.d/10-nixos.rules".text =
|
|
|
|
''
|
|
|
|
polkit.addAdminRule(function(action, subject) {
|
2013-11-18 17:45:31 +01:00
|
|
|
return [${concatStringsSep ", " (map (i: "\"${i}\"") cfg.adminIdentities)}];
|
2013-11-18 17:33:20 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
${cfg.extraConfig}
|
|
|
|
''; #TODO: validation on compilation (at least against typos)
|
2011-08-21 22:38:45 +02:00
|
|
|
|
2011-08-22 13:46:32 +02:00
|
|
|
services.dbus.packages = [ pkgs.polkit ];
|
2011-08-21 22:38:45 +02:00
|
|
|
|
2013-10-15 14:47:51 +02:00
|
|
|
security.pam.services.polkit-1 = {};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-08-21 22:38:45 +02:00
|
|
|
security.setuidPrograms = [ "pkexec" ];
|
|
|
|
|
2013-11-09 16:29:18 +01:00
|
|
|
security.setuidOwners = [
|
2011-08-21 22:38:45 +02:00
|
|
|
{ program = "polkit-agent-helper-1";
|
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
|
|
|
setuid = true;
|
2013-11-09 16:29:18 +01:00
|
|
|
source = "${pkgs.polkit}/lib/polkit-1/polkit-agent-helper-1";
|
|
|
|
}
|
|
|
|
];
|
2011-08-21 22:38:45 +02:00
|
|
|
|
2010-09-13 17:41:38 +02:00
|
|
|
system.activationScripts.polkit =
|
2009-08-16 23:48:46 +02:00
|
|
|
''
|
2013-11-09 16:29:18 +01:00
|
|
|
# Probably no more needed, clean up
|
|
|
|
rm -rf /var/lib/{polkit-1,PolicyKit}
|
2011-07-26 16:13:07 +02:00
|
|
|
|
|
|
|
# Force polkitd to be restarted so that it reloads its
|
|
|
|
# configuration.
|
2011-07-26 16:19:06 +02:00
|
|
|
${pkgs.procps}/bin/pkill -INT -u root -x polkitd
|
2009-08-16 23:48:46 +02:00
|
|
|
'';
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2013-11-09 16:29:18 +01:00
|
|
|
users.extraUsers.polkituser = {
|
|
|
|
description = "PolKit daemon";
|
|
|
|
uid = config.ids.uids.polkituser;
|
|
|
|
};
|
|
|
|
|
2009-08-16 23:48:46 +02:00
|
|
|
};
|
|
|
|
|
2009-08-17 03:16:38 +02:00
|
|
|
}
|
2013-11-09 16:29:18 +01:00
|
|
|
|