2009-05-29 14:25:56 +00:00
|
|
|
# This module defines the global list of uids and gids. We keep a
|
2013-08-10 21:07:13 +00:00
|
|
|
# central list to prevent id collisions.
|
2009-05-29 14:25:56 +00:00
|
|
|
|
2014-05-05 18:58:51 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
2009-05-29 14:25:56 +00:00
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
{
|
2009-05-29 14:25:56 +00:00
|
|
|
options = {
|
|
|
|
|
2014-05-05 18:58:51 +00:00
|
|
|
ids.uids = lib.mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
internal = true;
|
2009-05-29 14:25:56 +00:00
|
|
|
description = ''
|
|
|
|
The user IDs used in NixOS.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-05-05 18:58:51 +00:00
|
|
|
ids.gids = lib.mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
internal = true;
|
2009-05-29 14:25:56 +00:00
|
|
|
description = ''
|
|
|
|
The group IDs used in NixOS.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
config = {
|
2007-06-08 15:41:12 +00:00
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
ids.uids = {
|
|
|
|
root = 0;
|
|
|
|
nscd = 1;
|
|
|
|
sshd = 2;
|
|
|
|
ntp = 3;
|
|
|
|
messagebus = 4; # D-Bus
|
|
|
|
haldaemon = 5;
|
|
|
|
nagios = 6;
|
|
|
|
vsftpd = 7;
|
|
|
|
ftp = 8;
|
|
|
|
bitlbee = 9;
|
|
|
|
avahi = 10;
|
|
|
|
atd = 12;
|
|
|
|
zabbix = 13;
|
|
|
|
postfix = 14;
|
|
|
|
dovecot = 15;
|
|
|
|
tomcat = 16;
|
|
|
|
pulseaudio = 22; # must match `pulseaudio' GID
|
|
|
|
gpsd = 23;
|
|
|
|
polkituser = 28;
|
|
|
|
uptimed = 29;
|
|
|
|
ddclient = 30;
|
|
|
|
davfs2 = 31;
|
|
|
|
privoxy = 32;
|
|
|
|
osgi = 34;
|
|
|
|
tor = 35;
|
|
|
|
cups = 36;
|
2014-04-29 08:51:42 +00:00
|
|
|
foldingathome = 37;
|
2013-09-04 11:05:09 +00:00
|
|
|
sabnzbd = 38;
|
|
|
|
kdm = 39;
|
2014-04-29 08:51:42 +00:00
|
|
|
ghostone = 40;
|
2013-09-04 11:05:09 +00:00
|
|
|
git = 41;
|
2014-04-29 08:51:42 +00:00
|
|
|
fourstore = 42;
|
|
|
|
fourstorehttp = 43;
|
2013-09-04 11:05:09 +00:00
|
|
|
virtuoso = 44;
|
|
|
|
rtkit = 45;
|
|
|
|
dovecot2 = 46;
|
|
|
|
dovenull2 = 47;
|
|
|
|
unbound = 48;
|
|
|
|
prayer = 49;
|
|
|
|
mpd = 50;
|
|
|
|
clamav = 51;
|
|
|
|
fprot = 52;
|
|
|
|
bind = 53;
|
|
|
|
wwwrun = 54;
|
|
|
|
spamd = 56;
|
|
|
|
nslcd = 58;
|
|
|
|
nginx = 60;
|
|
|
|
chrony = 61;
|
|
|
|
smtpd = 63;
|
|
|
|
smtpq = 64;
|
|
|
|
supybot = 65;
|
|
|
|
iodined = 66;
|
|
|
|
graphite = 68;
|
|
|
|
statsd = 69;
|
|
|
|
transmission = 70;
|
|
|
|
postgres = 71;
|
2014-09-05 22:45:47 +00:00
|
|
|
smbguest = 74; # unused
|
2013-09-04 11:05:09 +00:00
|
|
|
varnish = 75;
|
2014-05-02 05:43:27 +00:00
|
|
|
datadog = 76;
|
2013-09-04 11:05:09 +00:00
|
|
|
lighttpd = 77;
|
|
|
|
lightdm = 78;
|
|
|
|
freenet = 79;
|
|
|
|
ircd = 80;
|
|
|
|
bacula = 81;
|
|
|
|
almir = 82;
|
|
|
|
deluge = 83;
|
|
|
|
mysql = 84;
|
|
|
|
rabbitmq = 85;
|
|
|
|
activemq = 86;
|
|
|
|
gnunet = 87;
|
|
|
|
oidentd = 88;
|
|
|
|
quassel = 89;
|
|
|
|
amule = 90;
|
|
|
|
minidlna = 91;
|
|
|
|
elasticsearch = 92;
|
2013-09-17 09:22:31 +00:00
|
|
|
tcpcryptd = 93; # tcpcryptd uses a hard-coded uid. We patch it in Nixpkgs to match this choice.
|
2013-10-02 13:14:35 +00:00
|
|
|
zope2 = 94;
|
2013-10-05 21:07:22 +00:00
|
|
|
firebird = 95;
|
2013-10-28 17:14:01 +00:00
|
|
|
redis = 96;
|
2013-10-29 14:55:25 +00:00
|
|
|
haproxy = 97;
|
2013-11-07 10:25:14 +00:00
|
|
|
mongodb = 98;
|
2013-11-28 21:21:50 +00:00
|
|
|
openldap = 99;
|
2013-12-13 09:05:36 +00:00
|
|
|
memcached = 100;
|
2014-01-12 23:18:05 +00:00
|
|
|
cgminer = 101;
|
2014-02-07 22:08:15 +00:00
|
|
|
munin = 102;
|
2014-02-11 13:19:06 +00:00
|
|
|
logcheck = 103;
|
2014-02-20 17:34:54 +00:00
|
|
|
nix-ssh = 104;
|
2014-02-21 11:40:05 +00:00
|
|
|
dictd = 105;
|
2014-02-27 13:33:30 +00:00
|
|
|
couchdb = 106;
|
2014-03-07 19:09:59 +00:00
|
|
|
searx = 107;
|
2014-03-12 07:32:56 +00:00
|
|
|
kippo = 108;
|
2014-02-10 20:07:12 +00:00
|
|
|
jenkins = 109;
|
2014-03-14 23:16:59 +00:00
|
|
|
systemd-journal-gateway = 110;
|
2014-03-13 08:45:57 +00:00
|
|
|
notbit = 111;
|
2014-03-20 02:04:35 +00:00
|
|
|
ngircd = 112;
|
2014-02-21 19:05:12 +00:00
|
|
|
btsync = 113;
|
2014-03-29 09:48:33 +00:00
|
|
|
minecraft = 114;
|
2014-04-01 17:20:33 +00:00
|
|
|
monetdb = 115;
|
2014-04-05 18:23:29 +00:00
|
|
|
rippled = 116;
|
2014-04-05 19:18:14 +00:00
|
|
|
murmur = 117;
|
2014-04-02 16:01:25 +00:00
|
|
|
foundationdb = 118;
|
|
|
|
newrelic = 119;
|
|
|
|
starbound = 120;
|
2014-04-29 08:45:06 +00:00
|
|
|
hydra = 122;
|
|
|
|
spiped = 123;
|
2014-03-29 00:40:30 +00:00
|
|
|
teamspeak = 124;
|
2014-05-27 20:54:43 +00:00
|
|
|
influxdb = 125;
|
2014-06-12 09:20:43 +00:00
|
|
|
nsd = 126;
|
2014-06-26 03:32:45 +00:00
|
|
|
gitolite = 127;
|
2014-07-03 16:30:11 +00:00
|
|
|
znc = 128;
|
2014-07-15 14:16:58 +00:00
|
|
|
polipo = 129;
|
2014-07-28 17:52:32 +00:00
|
|
|
mopidy = 130;
|
2014-08-05 21:00:30 +00:00
|
|
|
unifi = 131;
|
2014-04-02 16:21:00 +00:00
|
|
|
gdm = 132;
|
2014-06-25 08:28:53 +00:00
|
|
|
dhcpd = 133;
|
2014-07-10 18:08:38 +00:00
|
|
|
siproxd = 134;
|
2014-07-08 22:43:26 +00:00
|
|
|
mlmmj = 135;
|
2014-08-16 21:53:26 +00:00
|
|
|
neo4j = 136;
|
2014-08-23 15:04:34 +00:00
|
|
|
riemann = 137;
|
2014-08-23 15:39:45 +00:00
|
|
|
riemanndash = 138;
|
2014-06-27 06:45:04 +00:00
|
|
|
radvd = 139;
|
2014-08-24 15:43:45 +00:00
|
|
|
zookeeper = 140;
|
2014-07-02 22:59:35 +00:00
|
|
|
dnsmasq = 141;
|
2014-09-01 06:53:00 +00:00
|
|
|
uhub = 142;
|
2014-09-26 08:44:09 +00:00
|
|
|
yandexdisk = 143;
|
|
|
|
collectd = 144;
|
|
|
|
consul = 145;
|
2014-09-26 08:03:29 +00:00
|
|
|
mailpile = 146;
|
2014-10-07 08:53:01 +00:00
|
|
|
redmine = 147;
|
2014-10-06 19:25:10 +00:00
|
|
|
seeks = 148;
|
2014-10-20 15:22:01 +00:00
|
|
|
prosody = 149;
|
2014-11-09 08:44:47 +00:00
|
|
|
i2pd = 150;
|
2014-11-11 19:12:28 +00:00
|
|
|
dnscrypt-proxy = 151;
|
2014-11-19 23:01:44 +00:00
|
|
|
systemd-network = 152;
|
|
|
|
systemd-resolve = 153;
|
|
|
|
systemd-timesync = 154;
|
2014-11-20 22:30:24 +00:00
|
|
|
liquidsoap = 155;
|
2014-11-15 15:27:27 +00:00
|
|
|
etcd = 156;
|
2014-11-21 16:20:14 +00:00
|
|
|
docker-registry = 157;
|
2014-11-20 11:29:07 +00:00
|
|
|
hbase = 158;
|
2014-11-20 12:00:53 +00:00
|
|
|
opentsdb = 159;
|
2014-11-20 14:38:04 +00:00
|
|
|
scollector = 160;
|
2014-11-20 14:49:45 +00:00
|
|
|
bosun = 161;
|
2014-11-29 15:46:39 +00:00
|
|
|
kubernetes = 162;
|
2014-12-01 15:40:42 +00:00
|
|
|
peerflix = 163;
|
2014-12-03 14:49:14 +00:00
|
|
|
chronos = 164;
|
2014-10-25 16:22:49 +00:00
|
|
|
gitlab = 165;
|
2014-12-20 22:38:52 +00:00
|
|
|
tox-bootstrapd = 166;
|
2014-09-02 15:08:56 +00:00
|
|
|
|
2014-04-29 08:45:06 +00:00
|
|
|
# When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399!
|
2008-03-06 17:11:22 +00:00
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
nixbld = 30000; # start of range of uids
|
|
|
|
nobody = 65534;
|
|
|
|
};
|
|
|
|
|
|
|
|
ids.gids = {
|
|
|
|
root = 0;
|
|
|
|
wheel = 1;
|
|
|
|
kmem = 2;
|
|
|
|
tty = 3;
|
|
|
|
messagebus = 4; # D-Bus
|
|
|
|
haldaemon = 5;
|
|
|
|
disk = 6;
|
|
|
|
vsftpd = 7;
|
|
|
|
ftp = 8;
|
|
|
|
bitlbee = 9;
|
|
|
|
avahi = 10;
|
|
|
|
atd = 12;
|
|
|
|
postfix = 13;
|
|
|
|
postdrop = 14;
|
|
|
|
dovecot = 15;
|
|
|
|
audio = 17;
|
|
|
|
floppy = 18;
|
|
|
|
uucp = 19;
|
|
|
|
lp = 20;
|
|
|
|
tomcat = 21;
|
|
|
|
pulseaudio = 22; # must match `pulseaudio' UID
|
|
|
|
gpsd = 23;
|
|
|
|
cdrom = 24;
|
|
|
|
tape = 25;
|
|
|
|
video = 26;
|
|
|
|
dialout = 27;
|
2013-11-09 15:29:18 +00:00
|
|
|
#polkituser = 28; # currently unused, polkitd doesn't need a group
|
2013-09-04 11:05:09 +00:00
|
|
|
utmp = 29;
|
|
|
|
davfs2 = 31;
|
|
|
|
privoxy = 32;
|
|
|
|
disnix = 33;
|
|
|
|
osgi = 34;
|
2014-12-06 09:37:31 +00:00
|
|
|
tor = 35;
|
2013-09-04 11:05:09 +00:00
|
|
|
ghostOne = 40;
|
|
|
|
git = 41;
|
2014-04-29 08:51:42 +00:00
|
|
|
fourstore = 42;
|
|
|
|
fourstorehttpd = 43;
|
2013-09-04 11:05:09 +00:00
|
|
|
virtuoso = 44;
|
|
|
|
dovecot2 = 46;
|
|
|
|
prayer = 49;
|
|
|
|
mpd = 50;
|
|
|
|
clamav = 51;
|
|
|
|
fprot = 52;
|
|
|
|
wwwrun = 54;
|
|
|
|
adm = 55;
|
|
|
|
spamd = 56;
|
|
|
|
networkmanager = 57;
|
|
|
|
nslcd = 58;
|
|
|
|
scanner = 59;
|
|
|
|
nginx = 60;
|
|
|
|
systemd-journal = 62;
|
|
|
|
smtpd = 63;
|
|
|
|
smtpq = 64;
|
|
|
|
supybot = 65;
|
|
|
|
iodined = 66;
|
|
|
|
libvirtd = 67;
|
|
|
|
graphite = 68;
|
|
|
|
transmission = 70;
|
|
|
|
postgres = 71;
|
|
|
|
vboxusers = 72;
|
|
|
|
vboxsf = 73;
|
2014-09-05 22:45:47 +00:00
|
|
|
smbguest = 74; # unused
|
2013-09-04 11:05:09 +00:00
|
|
|
varnish = 75;
|
2014-05-02 05:43:27 +00:00
|
|
|
datadog = 76;
|
2013-09-04 11:05:09 +00:00
|
|
|
lighttpd = 77;
|
|
|
|
lightdm = 78;
|
|
|
|
freenet = 79;
|
|
|
|
ircd = 80;
|
|
|
|
bacula = 81;
|
|
|
|
almir = 82;
|
|
|
|
deluge = 83;
|
|
|
|
mysql = 84;
|
|
|
|
rabbitmq = 85;
|
|
|
|
activemq = 86;
|
|
|
|
gnunet = 87;
|
|
|
|
oidentd = 88;
|
|
|
|
quassel = 89;
|
|
|
|
amule = 90;
|
|
|
|
minidlna = 91;
|
2013-10-29 14:55:25 +00:00
|
|
|
haproxy = 92;
|
2013-11-28 21:21:50 +00:00
|
|
|
openldap = 93;
|
2014-01-04 00:13:26 +00:00
|
|
|
connman = 94;
|
2014-02-07 22:08:15 +00:00
|
|
|
munin = 95;
|
2014-02-11 12:00:10 +00:00
|
|
|
keys = 96;
|
2014-02-21 11:40:05 +00:00
|
|
|
dictd = 105;
|
2014-02-27 13:33:30 +00:00
|
|
|
couchdb = 106;
|
2014-03-07 19:09:59 +00:00
|
|
|
searx = 107;
|
2014-03-12 07:32:56 +00:00
|
|
|
kippo = 108;
|
2014-02-10 20:07:12 +00:00
|
|
|
jenkins = 109;
|
2014-03-14 23:16:59 +00:00
|
|
|
systemd-journal-gateway = 110;
|
2014-03-13 08:45:57 +00:00
|
|
|
notbit = 111;
|
2014-04-01 17:41:37 +00:00
|
|
|
monetdb = 115;
|
2014-04-02 16:01:25 +00:00
|
|
|
foundationdb = 118;
|
|
|
|
newrelic = 119;
|
|
|
|
starbound = 120;
|
nixos: add grsecurity module (#1875)
This module implements a significant refactoring in grsecurity
configuration for NixOS, making it far more usable by default and much
easier to configure.
- New security.grsecurity NixOS attributes.
- All grsec kernels supported
- Allows default 'auto' grsec configuration, or custom config
- Supports custom kernel options through kernelExtraConfig
- Defaults to high-security - user must choose kernel, server/desktop
mode, and any virtualisation software. That's all.
- kptr_restrict is fixed under grsecurity (it's unwriteable)
- grsecurity patch creation is now significantly abstracted
- only need revision, version, and SHA1
- kernel version requirements are asserted for sanity
- built kernels can have the uname specify the exact grsec version
for development or bug reports. Off by default (requires
`security.grsecurity.config.verboseVersion = true;`)
- grsecurity sysctl support
- By default, disabled.
- For people who enable it, NixOS deploys a 'grsec-lock' systemd
service which runs at startup. You are expected to configure sysctl
through NixOS like you regularly would, which will occur before the
service is started. As a result, changing sysctl settings requires
a reboot.
- New default group: 'grsecurity'
- Root is a member by default
- GRKERNSEC_PROC_GID is implicitly set to the 'grsecurity' GID,
making it possible to easily add users to this group for /proc
access
- AppArmor is now automatically enabled where it wasn't before, despite
implying features.apparmor = true
The most trivial example of enabling grsecurity in your kernel is by
specifying:
security.grsecurity.enable = true;
security.grsecurity.testing = true; # testing 3.13 kernel
security.grsecurity.config.system = "desktop"; # or "server"
This specifies absolutely no virtualisation support. In general, you
probably at least want KVM host support, which is a little more work.
So:
security.grsecurity.enable = true;
security.grsecurity.stable = true; # enable stable 3.2 kernel
security.grsecurity.config = {
system = "server";
priority = "security";
virtualisationConfig = "host";
virtualisationSoftware = "kvm";
hardwareVirtualisation = true;
}
This module has primarily been tested on Hetzner EX40 & VQ7 servers
using NixOps.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-06 19:18:12 +00:00
|
|
|
grsecurity = 121;
|
2014-04-15 07:28:01 +00:00
|
|
|
hydra = 122;
|
2014-04-15 08:21:53 +00:00
|
|
|
spiped = 123;
|
2014-03-29 00:40:30 +00:00
|
|
|
teamspeak = 124;
|
2014-05-27 20:54:43 +00:00
|
|
|
influxdb = 125;
|
2014-06-12 09:20:43 +00:00
|
|
|
nsd = 126;
|
2014-07-04 11:48:26 +00:00
|
|
|
firebird = 127;
|
2014-07-03 16:30:11 +00:00
|
|
|
znc = 128;
|
2014-07-15 14:16:58 +00:00
|
|
|
polipo = 129;
|
2014-07-28 17:52:32 +00:00
|
|
|
mopidy = 130;
|
2014-07-27 22:00:59 +00:00
|
|
|
docker = 131;
|
2014-04-02 16:21:00 +00:00
|
|
|
gdm = 132;
|
2014-08-12 17:24:08 +00:00
|
|
|
tss = 133;
|
2014-07-10 18:08:38 +00:00
|
|
|
siproxd = 134;
|
2014-07-08 22:43:26 +00:00
|
|
|
mlmmj = 135;
|
2014-08-23 15:04:34 +00:00
|
|
|
riemann = 137;
|
2014-08-23 15:39:45 +00:00
|
|
|
riemanndash = 138;
|
2014-11-20 11:29:07 +00:00
|
|
|
hbase = 139;
|
2014-11-20 12:00:53 +00:00
|
|
|
opentsdb = 140;
|
2014-09-01 06:53:00 +00:00
|
|
|
uhub = 142;
|
2014-09-26 08:03:29 +00:00
|
|
|
mailpile = 146;
|
2014-10-07 08:53:01 +00:00
|
|
|
redmine = 147;
|
2014-10-06 19:25:10 +00:00
|
|
|
seeks = 148;
|
2014-10-20 15:22:01 +00:00
|
|
|
prosody = 149;
|
2014-11-09 08:44:47 +00:00
|
|
|
i2pd = 150;
|
2014-11-19 23:01:44 +00:00
|
|
|
systemd-network = 152;
|
|
|
|
systemd-resolve = 153;
|
|
|
|
systemd-timesync = 154;
|
2014-11-20 22:30:24 +00:00
|
|
|
liquidsoap = 155;
|
2014-11-20 14:38:04 +00:00
|
|
|
scollector = 156;
|
2014-11-20 14:49:45 +00:00
|
|
|
bosun = 157;
|
2014-11-23 00:27:04 +00:00
|
|
|
kubernetes = 158;
|
2014-12-07 20:52:52 +00:00
|
|
|
fleet = 159;
|
2014-10-25 16:22:49 +00:00
|
|
|
gitlab = 160;
|
2014-09-02 15:08:56 +00:00
|
|
|
|
2014-04-29 08:45:06 +00:00
|
|
|
# When adding a gid, make sure it doesn't match an existing uid. And don't use gids above 399!
|
2011-04-15 16:10:17 +00:00
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
users = 100;
|
|
|
|
nixbld = 30000;
|
|
|
|
nogroup = 65534;
|
|
|
|
};
|
2009-08-11 09:17:30 +00:00
|
|
|
|
2007-06-08 15:41:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|