2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-08-16 23:48:46 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2009-08-16 23:48:46 +02:00
|
|
|
|
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
|
|
|
|
2022-01-26 15:04:03 +01:00
|
|
|
security.polkit.enable = mkEnableOption (lib.mdDoc "polkit");
|
2009-08-16 23:48:46 +02:00
|
|
|
|
2023-02-01 06:12:57 +01:00
|
|
|
security.polkit.debug = mkEnableOption (lib.mdDoc "debug logs from polkit. This is required in order to see log messages from rule definitions");
|
2022-10-02 09:46:28 +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) {
|
2022-10-02 09:46:28 +02:00
|
|
|
// Make sure to set { security.polkit.debug = true; } in configuration.nix
|
2013-11-18 18:01:07 +01:00
|
|
|
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
|
|
|
'';
|
2022-07-20 12:32:04 +02:00
|
|
|
description = lib.mdDoc
|
2011-08-21 22:38:45 +02:00
|
|
|
''
|
2013-11-09 16:29:18 +01:00
|
|
|
Any polkit rules to be added to config (in JavaScript ;-). See:
|
2023-10-30 21:41:44 +01:00
|
|
|
<https://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;
|
2019-12-09 07:38:33 +01:00
|
|
|
default = [ "unix-group:wheel" ];
|
2013-11-18 17:45:31 +01:00
|
|
|
example = [ "unix-user:alice" "unix-group:admin" ];
|
2022-07-20 12:32:04 +02:00
|
|
|
description = lib.mdDoc
|
2011-08-21 22:38:45 +02:00
|
|
|
''
|
|
|
|
Specifies which users are considered “administrators”, for those
|
|
|
|
actions that require the user to authenticate as an
|
2022-07-20 12:32:04 +02:00
|
|
|
administrator (i.e. have an `auth_admin`
|
|
|
|
value). By default, this is all users in the `wheel` group.
|
2011-08-21 22:38:45 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2016-01-28 11:24:18 +01:00
|
|
|
environment.systemPackages = [ pkgs.polkit.bin pkgs.polkit.out ];
|
2011-08-21 22:38:45 +02:00
|
|
|
|
2015-11-26 18:14:22 +01:00
|
|
|
systemd.packages = [ pkgs.polkit.out ];
|
2013-11-09 16:29:18 +01:00
|
|
|
|
2022-10-02 09:46:28 +02:00
|
|
|
systemd.services.polkit.serviceConfig.ExecStart = [
|
|
|
|
""
|
|
|
|
"${pkgs.polkit.out}/lib/polkit-1/polkitd ${optionalString (!cfg.debug) "--no-debug"}"
|
|
|
|
];
|
|
|
|
|
2014-04-19 14:29:02 +02:00
|
|
|
systemd.services.polkit.restartTriggers = [ config.system.path ];
|
2017-04-04 14:18:49 +02:00
|
|
|
systemd.services.polkit.stopIfChanged = false;
|
2014-04-19 14:29:02 +02:00
|
|
|
|
2013-11-09 16:29:18 +01:00
|
|
|
# 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
|
|
|
|
2015-10-16 18:28:55 +02:00
|
|
|
services.dbus.packages = [ pkgs.polkit.out ];
|
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
|
|
|
|
2017-01-29 12:33:56 +01:00
|
|
|
security.wrappers = {
|
2021-09-12 18:53:48 +02:00
|
|
|
pkexec =
|
|
|
|
{ setuid = true;
|
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
|
|
|
source = "${pkgs.polkit.bin}/bin/pkexec";
|
|
|
|
};
|
|
|
|
polkit-agent-helper-1 =
|
|
|
|
{ setuid = true;
|
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
|
|
|
source = "${pkgs.polkit.out}/lib/polkit-1/polkit-agent-helper-1";
|
|
|
|
};
|
2017-01-29 12:33:56 +01:00
|
|
|
};
|
2011-08-21 22:38:45 +02:00
|
|
|
|
2018-09-29 21:28:54 +02:00
|
|
|
systemd.tmpfiles.rules = [
|
|
|
|
# Probably no more needed, clean up
|
|
|
|
"R /var/lib/polkit-1"
|
|
|
|
"R /var/lib/PolicyKit"
|
|
|
|
];
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2018-06-30 01:58:35 +02:00
|
|
|
users.users.polkituser = {
|
2013-11-09 16:29:18 +01:00
|
|
|
description = "PolKit daemon";
|
|
|
|
uid = config.ids.uids.polkituser;
|
2021-04-15 20:53:28 +02:00
|
|
|
group = "polkituser";
|
2013-11-09 16:29:18 +01:00
|
|
|
};
|
|
|
|
|
2023-02-26 04:26:28 +01:00
|
|
|
users.groups.polkituser = {};
|
2009-08-16 23:48:46 +02:00
|
|
|
};
|
|
|
|
|
2009-08-17 03:16:38 +02:00
|
|
|
}
|