nixos: add uid/gid for munin

To be compatible with eb2f44c18c (Generate
/etc/passwd and /etc/group at build time). Without this you'll get this:

  $ nixos-rebuild build
  [...]
  user-thrown exception: The option `users.extraGroups.unnamed-9.1.gid' is used but not defined.
This commit is contained in:
Bjørn Forsman 2014-02-07 23:08:15 +01:00
parent f163bce98d
commit db12d783ff
2 changed files with 4 additions and 0 deletions

View File

@ -110,6 +110,7 @@
openldap = 99;
memcached = 100;
cgminer = 101;
munin = 102;
# When adding a uid, make sure it doesn't match an existing gid.
@ -199,6 +200,7 @@
haproxy = 92;
openldap = 93;
connman = 94;
munin = 95;
# When adding a gid, make sure it doesn't match an existing uid.

View File

@ -173,10 +173,12 @@ in
name = "munin";
description = "Munin monitoring user";
group = "munin";
uid = config.ids.uids.munin;
}];
users.extraGroups = [{
name = "munin";
gid = config.ids.gids.munin;
}];
}) (mkIf nodeCfg.enable {