about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorDominik Schrempf <dominik.schrempf@gmail.com>2021-09-20 22:16:09 +0200
committerDominik Schrempf <dominik.schrempf@gmail.com>2021-09-20 22:16:09 +0200
commitfade6648c75f7770578097aa09096e373d151231 (patch)
tree3582b2902132b3a615848e95b6b0a243cc5e1df7 /nixos
parentbc9b956714ed6eac5f8888322aac5bc41389defa (diff)
downloadnixlib-fade6648c75f7770578097aa09096e373d151231.tar
nixlib-fade6648c75f7770578097aa09096e373d151231.tar.gz
nixlib-fade6648c75f7770578097aa09096e373d151231.tar.bz2
nixlib-fade6648c75f7770578097aa09096e373d151231.tar.lz
nixlib-fade6648c75f7770578097aa09096e373d151231.tar.xz
nixlib-fade6648c75f7770578097aa09096e373d151231.tar.zst
nixlib-fade6648c75f7770578097aa09096e373d151231.zip
nixos/localtimed: nogroup fix
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/system/localtime.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/services/system/localtime.nix b/nixos/modules/services/system/localtime.nix
index bb99e5e36ff8..8f23454af9df 100644
--- a/nixos/modules/services/system/localtime.nix
+++ b/nixos/modules/services/system/localtime.nix
@@ -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" ];