mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +03:00
Add kdm user. Kdm doesn't work here without kdm user
svn path=/nixos/trunk/; revision=24835
This commit is contained in:
parent
1b41b6d16d
commit
f58efe3336
2 changed files with 8 additions and 0 deletions
|
@ -57,6 +57,7 @@ in
|
||||||
cups = 36;
|
cups = 36;
|
||||||
foldingAtHome = 37;
|
foldingAtHome = 37;
|
||||||
sabnzbd = 38;
|
sabnzbd = 38;
|
||||||
|
kdm = 39;
|
||||||
# When adding a uid, make sure it doesn't match an existing gid.
|
# When adding a uid, make sure it doesn't match an existing gid.
|
||||||
|
|
||||||
nixbld = 30000; # start of range of uids
|
nixbld = 30000; # start of range of uids
|
||||||
|
|
|
@ -106,6 +106,13 @@ in
|
||||||
|
|
||||||
security.pam.services = [ { name = "kde"; } ];
|
security.pam.services = [ { name = "kde"; } ];
|
||||||
|
|
||||||
|
users.extraUsers = singleton
|
||||||
|
{ name = "kdm";
|
||||||
|
uid = config.ids.uids.kdm;
|
||||||
|
description = "kdm user";
|
||||||
|
home = "/tmp/kdm";
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue