Merge pull request #75343 from worldofpeace/polkit-no-root-admin

nixos/polkit: remove root from adminIdentities
This commit is contained in:
worldofpeace
2019-12-10 20:24:23 -05:00
committed by GitHub
2 changed files with 12 additions and 3 deletions
+2 -3
View File
@@ -42,15 +42,14 @@ in
security.polkit.adminIdentities = mkOption {
type = types.listOf types.str;
default = [ "unix-user:0" "unix-group:wheel" ];
default = [ "unix-group:wheel" ];
example = [ "unix-user:alice" "unix-group:admin" ];
description =
''
Specifies which users are considered administrators, for those
actions that require the user to authenticate as an
administrator (i.e. have an <literal>auth_admin</literal>
value). By default, this is the <literal>root</literal>
user and all users in the <literal>wheel</literal> group.
value). By default, this is all users in the <literal>wheel</literal> group.
'';
};