lib/stats: moar collectd workarounds

This commit is contained in:
Astro 2021-11-11 01:55:47 +01:00
parent 8ad7b39a9e
commit fd682949cd
1 changed files with 4 additions and 1 deletions

View File

@ -44,7 +44,10 @@ in
};
};
# Workaround for nixpkgs/master:
users.users.collectd.group = "collectd";
users.users.collectd = {
isSystemUser = true;
group = "collectd";
};
users.groups.collectd = {};
services.nginx = lib.mkIf config.services.nginx.enable {