summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-01-30 11:32:10 +0100
committerGitHub <noreply@github.com>2023-01-30 11:32:10 +0100
commitd26c778adedb125cf49acb71a75f3bbb569657ab (patch)
tree796b61d2051b709daed0732dcb9a8fabbca4d2b5 /nixos
parent70b8ae442dd07803fc63f1d7fda9bd800ab50239 (diff)
parentdb74bf537556218e7fe48c03729b6ab9bff26b6c (diff)
Merge pull request #153127 from eyJhb/user-uids-fix
nixos/users+nixos/lightdm: fixed users starting at 1000, and system users below 1000
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/config/users-groups.nix4
-rw-r--r--nixos/modules/services/x11/display-managers/lightdm.nix2
2 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index 76092e738ebd..352d6e39435b 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -90,7 +90,7 @@ let
only has an effect if {option}`uid` is
{option}`null`, in which case it determines whether
the user's UID is allocated in the range for system users
- (below 500) or in the range for normal users (starting at
+ (below 1000) or in the range for normal users (starting at
1000).
Exactly one of `isNormalUser` and
`isSystemUser` must be true.
@@ -677,7 +677,7 @@ in {
{
assertion = let
xor = a: b: a && !b || b && !a;
- isEffectivelySystemUser = user.isSystemUser || (user.uid != null && user.uid < 500);
+ isEffectivelySystemUser = user.isSystemUser || (user.uid != null && user.uid < 1000);
in xor isEffectivelySystemUser user.isNormalUser;
message = ''
Exactly one of users.users.${user.name}.isSystemUser and users.users.${user.name}.isNormalUser must be set.
diff --git a/nixos/modules/services/x11/display-managers/lightdm.nix b/nixos/modules/services/x11/display-managers/lightdm.nix
index f74e8efb8f64..65f414705fc5 100644
--- a/nixos/modules/services/x11/display-managers/lightdm.nix
+++ b/nixos/modules/services/x11/display-managers/lightdm.nix
@@ -32,7 +32,7 @@ let
usersConf = writeText "users.conf"
''
[UserList]
- minimum-uid=500
+ minimum-uid=1000
hidden-users=${concatStringsSep " " dmcfg.hiddenUsers}
hidden-shells=/run/current-system/sw/bin/nologin
'';