2009-05-29 16:25:56 +02:00
|
|
|
# This module defines the global list of uids and gids. We keep a
|
2013-08-10 23:07:13 +02:00
|
|
|
# central list to prevent id collisions.
|
2009-05-29 16:25:56 +02:00
|
|
|
|
|
|
|
{config, pkgs, ...}:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
ids.uids = pkgs.lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
The user IDs used in NixOS.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
ids.gids = pkgs.lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
The group IDs used in NixOS.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2007-06-08 17:41:12 +02:00
|
|
|
{
|
2009-05-29 16:25:56 +02:00
|
|
|
require = options;
|
2007-06-08 17:41:12 +02:00
|
|
|
|
2009-05-29 16:25:56 +02:00
|
|
|
ids.uids = {
|
2007-06-08 17:41:12 +02:00
|
|
|
root = 0;
|
|
|
|
nscd = 1;
|
|
|
|
sshd = 2;
|
|
|
|
ntp = 3;
|
|
|
|
messagebus = 4; # D-Bus
|
|
|
|
haldaemon = 5;
|
2007-11-12 17:43:35 +01:00
|
|
|
nagios = 6;
|
2008-02-07 13:41:18 +01:00
|
|
|
vsftpd = 7;
|
|
|
|
ftp = 8;
|
2008-02-18 10:15:10 +01:00
|
|
|
bitlbee = 9;
|
2008-03-06 18:11:22 +01:00
|
|
|
avahi = 10;
|
2008-03-16 00:40:44 +01:00
|
|
|
portmap = 11;
|
2008-04-01 12:16:35 +02:00
|
|
|
atd = 12;
|
2008-06-06 11:13:16 +02:00
|
|
|
zabbix = 13;
|
2008-06-30 17:13:02 +02:00
|
|
|
postfix = 14;
|
2008-06-30 23:12:02 +02:00
|
|
|
dovecot = 15;
|
2008-07-06 00:27:36 +02:00
|
|
|
tomcat = 16;
|
2009-01-29 19:28:09 +01:00
|
|
|
pulseaudio = 22; # must match `pulseaudio' GID
|
2009-05-31 20:51:29 +02:00
|
|
|
gpsd = 23;
|
2009-09-26 01:06:38 +02:00
|
|
|
polkituser = 28;
|
|
|
|
uptimed = 29;
|
|
|
|
ddclient = 30;
|
2009-10-05 17:11:32 +02:00
|
|
|
davfs2 = 31;
|
2011-09-14 20:20:50 +02:00
|
|
|
privoxy = 32;
|
2010-04-22 17:13:50 +02:00
|
|
|
osgi = 34;
|
2010-08-06 16:52:09 +02:00
|
|
|
tor = 35;
|
|
|
|
cups = 36;
|
2010-09-16 04:06:44 +02:00
|
|
|
foldingAtHome = 37;
|
2010-10-22 15:18:26 +02:00
|
|
|
sabnzbd = 38;
|
2010-11-24 11:45:34 +01:00
|
|
|
kdm = 39;
|
2010-12-15 03:19:44 +01:00
|
|
|
ghostOne = 40;
|
2010-12-17 08:33:20 +01:00
|
|
|
git = 41;
|
2011-04-15 18:10:13 +02:00
|
|
|
fourStore = 42;
|
2011-04-15 18:10:17 +02:00
|
|
|
fourStoreEndpoint = 43;
|
2011-05-31 09:44:17 +02:00
|
|
|
virtuoso = 44;
|
2011-07-26 16:14:10 +02:00
|
|
|
rtkit = 45;
|
2011-10-27 21:43:20 +02:00
|
|
|
dovecot2 = 46;
|
|
|
|
dovenull2 = 47;
|
2011-11-02 21:59:12 +01:00
|
|
|
unbound = 48;
|
2011-11-09 21:48:12 +01:00
|
|
|
prayer = 49;
|
2011-12-05 02:51:05 +01:00
|
|
|
mpd = 50;
|
2012-07-23 16:18:19 +02:00
|
|
|
clamav = 51;
|
2012-07-24 09:51:17 +02:00
|
|
|
fprot = 52;
|
2012-07-27 00:07:25 +02:00
|
|
|
bind = 53;
|
2012-08-03 17:05:25 +02:00
|
|
|
wwwrun = 54;
|
2012-09-28 17:14:33 +02:00
|
|
|
spamd = 56;
|
2012-09-16 18:43:25 +02:00
|
|
|
nslcd = 58;
|
2013-05-06 16:49:23 +02:00
|
|
|
nginx = 60;
|
2013-05-23 04:07:49 +02:00
|
|
|
chrony = 61;
|
2013-07-30 10:20:56 +02:00
|
|
|
smtpd = 63;
|
2013-08-05 00:03:42 +02:00
|
|
|
smtpq = 64;
|
2013-08-04 03:59:18 +02:00
|
|
|
supybot = 65;
|
2013-08-05 00:03:42 +02:00
|
|
|
iodined = 66;
|
2011-04-15 18:10:17 +02:00
|
|
|
|
2009-09-26 01:06:38 +02:00
|
|
|
# When adding a uid, make sure it doesn't match an existing gid.
|
2008-03-06 18:11:22 +01:00
|
|
|
|
2007-06-08 17:41:12 +02:00
|
|
|
nixbld = 30000; # start of range of uids
|
|
|
|
nobody = 65534;
|
|
|
|
};
|
|
|
|
|
2009-05-29 16:25:56 +02:00
|
|
|
ids.gids = {
|
2007-06-08 17:41:12 +02:00
|
|
|
root = 0;
|
2007-08-16 17:09:06 +02:00
|
|
|
wheel = 1;
|
2008-07-02 20:03:43 +02:00
|
|
|
kmem = 2;
|
|
|
|
tty = 3;
|
2009-08-16 23:46:26 +02:00
|
|
|
messagebus = 4; # D-Bus
|
2007-06-10 22:13:12 +02:00
|
|
|
haldaemon = 5;
|
2008-07-02 20:03:43 +02:00
|
|
|
disk = 6;
|
2008-02-07 13:41:18 +01:00
|
|
|
vsftpd = 7;
|
|
|
|
ftp = 8;
|
2008-03-26 17:42:57 +01:00
|
|
|
bitlbee = 9;
|
2008-03-06 18:11:22 +01:00
|
|
|
avahi = 10;
|
2008-03-16 00:40:44 +01:00
|
|
|
portmap = 11;
|
2008-04-01 12:16:35 +02:00
|
|
|
atd = 12;
|
2008-06-30 17:13:02 +02:00
|
|
|
postfix = 13;
|
|
|
|
postdrop = 14;
|
2008-06-30 23:12:02 +02:00
|
|
|
dovecot = 15;
|
2007-06-10 22:17:51 +02:00
|
|
|
audio = 17;
|
2008-07-02 20:03:43 +02:00
|
|
|
floppy = 18;
|
|
|
|
uucp = 19;
|
|
|
|
lp = 20;
|
2008-07-06 00:27:36 +02:00
|
|
|
tomcat = 21;
|
2009-01-29 19:28:09 +01:00
|
|
|
pulseaudio = 22; # must match `pulseaudio' UID
|
2009-05-31 20:51:29 +02:00
|
|
|
gpsd = 23;
|
2009-08-11 11:17:30 +02:00
|
|
|
cdrom = 24;
|
|
|
|
tape = 25;
|
|
|
|
video = 26;
|
|
|
|
dialout = 27;
|
2009-09-26 01:06:38 +02:00
|
|
|
polkituser = 28;
|
2010-04-22 15:56:26 +02:00
|
|
|
utmp = 29;
|
2009-10-05 17:11:32 +02:00
|
|
|
davfs2 = 31;
|
|
|
|
privoxy = 32;
|
2010-04-19 15:26:21 +02:00
|
|
|
disnix = 33;
|
2010-04-22 17:13:50 +02:00
|
|
|
osgi = 34;
|
2010-12-15 03:19:44 +01:00
|
|
|
ghostOne = 40;
|
2010-12-17 08:33:20 +01:00
|
|
|
git = 41;
|
2011-04-15 18:10:13 +02:00
|
|
|
fourStore = 42;
|
2011-04-15 18:10:17 +02:00
|
|
|
fourStoreEndpoint = 43;
|
2011-05-31 09:44:17 +02:00
|
|
|
virtuoso = 44;
|
2012-03-22 11:11:15 +01:00
|
|
|
dovecot2 = 46;
|
|
|
|
prayer = 49;
|
|
|
|
mpd = 50;
|
2012-07-23 16:18:19 +02:00
|
|
|
clamav = 51;
|
2012-07-24 09:51:17 +02:00
|
|
|
fprot = 52;
|
2012-08-03 17:05:25 +02:00
|
|
|
wwwrun = 54;
|
2012-09-28 17:14:33 +02:00
|
|
|
adm = 55;
|
|
|
|
spamd = 56;
|
|
|
|
networkmanager = 57;
|
2012-09-16 18:43:25 +02:00
|
|
|
nslcd = 58;
|
2012-12-06 01:57:19 +01:00
|
|
|
scanner = 59;
|
2013-05-06 16:49:23 +02:00
|
|
|
nginx = 60;
|
2013-07-19 21:18:44 +02:00
|
|
|
systemd-journal = 62;
|
2013-07-30 10:20:56 +02:00
|
|
|
smtpd = 63;
|
2013-08-05 00:03:42 +02:00
|
|
|
smtpq = 64;
|
2013-08-04 03:59:18 +02:00
|
|
|
supybot = 65;
|
2013-08-05 00:03:42 +02:00
|
|
|
iodined = 66;
|
2011-04-15 18:10:17 +02:00
|
|
|
|
2009-09-26 01:06:38 +02:00
|
|
|
# When adding a gid, make sure it doesn't match an existing uid.
|
2009-08-11 11:17:30 +02:00
|
|
|
|
2007-06-08 17:41:12 +02:00
|
|
|
users = 100;
|
|
|
|
nixbld = 30000;
|
|
|
|
nogroup = 65534;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|