summary refs log tree commit diff
path: root/nixos/modules/system/boot/systemd.nix
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien@users.noreply.github.com>2021-08-08 15:02:31 +0000
committerGitHub <noreply@github.com>2021-08-08 15:02:31 +0000
commit71154a8a8a3cda336b7908a428e0fd6c57e2424d (patch)
tree660364dcaa23f8c3fda6db053b849e59c110bbdc /nixos/modules/system/boot/systemd.nix
parentfff53fa030b0ae5beb6268a804c4cac114cce1c2 (diff)
parentad59e62780bd8889cd73c4e5427cf5acaeaafe4d (diff)
downloadnixpkgs-71154a8a8a3cda336b7908a428e0fd6c57e2424d.tar
nixpkgs-71154a8a8a3cda336b7908a428e0fd6c57e2424d.tar.gz
nixpkgs-71154a8a8a3cda336b7908a428e0fd6c57e2424d.tar.bz2
nixpkgs-71154a8a8a3cda336b7908a428e0fd6c57e2424d.tar.lz
nixpkgs-71154a8a8a3cda336b7908a428e0fd6c57e2424d.tar.xz
nixpkgs-71154a8a8a3cda336b7908a428e0fd6c57e2424d.tar.zst
nixpkgs-71154a8a8a3cda336b7908a428e0fd6c57e2424d.zip
Merge pull request #130519 from Mic92/journald
nixos/journald: don't set nogroup
Diffstat (limited to 'nixos/modules/system/boot/systemd.nix')
-rw-r--r--nixos/modules/system/boot/systemd.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix
index 73616065a08..b53cb9e7d41 100644
--- a/nixos/modules/system/boot/systemd.nix
+++ b/nixos/modules/system/boot/systemd.nix
@@ -1128,6 +1128,7 @@ in
 
     users.groups.systemd-journal.gid = config.ids.gids.systemd-journal;
     users.users.systemd-journal-gateway.uid = config.ids.uids.systemd-journal-gateway;
+    users.users.systemd-journal-gateway.group = "systemd-journal-gateway";
     users.groups.systemd-journal-gateway.gid = config.ids.gids.systemd-journal-gateway;
 
     # Generate timer units for all services that have a ‘startAt’ value.