nixpkgs/system/ids.nix
Eelco Dolstra 8b85db0728 * Upstart job for Nagios (system/network monitoring daemon).
svn path=/nixos/trunk/; revision=9658
2007-11-12 16:43:35 +00:00

26 lines
344 B
Nix

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