nixpkgs/system/ids.nix
Eelco Dolstra 4d4387a70e * Allow jobs to specify groups.
svn path=/nixos/trunk/; revision=8862
2007-06-10 20:13:12 +00:00

23 lines
297 B
Nix

{
uids = {
root = 0;
nscd = 1;
sshd = 2;
ntp = 3;
messagebus = 4; # D-Bus
haldaemon = 5;
nixbld = 30000; # start of range of uids
nobody = 65534;
};
gids = {
root = 0;
haldaemon = 5;
users = 100;
nixbld = 30000;
nogroup = 65534;
};
}