Merge pull request #61689 from neilmayhew/nixos/modules/colord

nixos/modules: Ensure the colord user is a system user
This commit is contained in:
worldofpeace 2019-05-18 19:58:47 -04:00 committed by GitHub
commit 1b457e7872
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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";
};