nixos/modules: Ensure the colord user is a system user

Ideally, it should have an assigned uid and gid
This commit is contained in:
Neil Mayhew 2019-05-18 16:48:34 -06:00
parent cb3c214602
commit f14cf438b4

View File

@ -29,6 +29,7 @@ in {
environment.etc."tmpfiles.d/colord.conf".source = "${pkgs.colord}/lib/tmpfiles.d/colord.conf";
users.users.colord = {
isSystemUser = true;
home = "/var/lib/colord";
group = "colord";
};