Merge pull request #138748 from dschrempf/localtimed_nogroup

nixos/localtimed: nogroup fix
This commit is contained in:
Michele Guerini Rocco 2021-09-21 13:35:30 +02:00 committed by GitHub
commit 806e2b3643
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,9 @@ in {
users.users.localtimed = {
description = "localtime daemon";
isSystemUser = true;
group = "localtimed";
};
users.groups.localtimed = {};
systemd.services.localtime = {
wantedBy = [ "multi-user.target" ];