Add kdm user. Kdm doesn't work here without kdm user

svn path=/nixos/trunk/; revision=24835
This commit is contained in:
Yury G. Kudryashov 2010-11-24 10:45:34 +00:00
parent 1b41b6d16d
commit f58efe3336
2 changed files with 8 additions and 0 deletions

View File

@ -57,6 +57,7 @@ in
cups = 36;
foldingAtHome = 37;
sabnzbd = 38;
kdm = 39;
# When adding a uid, make sure it doesn't match an existing gid.
nixbld = 30000; # start of range of uids

View File

@ -106,6 +106,13 @@ in
security.pam.services = [ { name = "kde"; } ];
users.extraUsers = singleton
{ name = "kdm";
uid = config.ids.uids.kdm;
description = "kdm user";
home = "/tmp/kdm";
};
};
}