0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

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

@ -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";
};
};
}