From 9739ba6baf77bcbb39ead2d443019fb930d9a42d Mon Sep 17 00:00:00 2001 From: Guillaume Girol Date: Tue, 14 Sep 2021 12:00:00 +0000 Subject: nixos/systemd: create a group for systemd-coredump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: ``` activating the configuration... warning: user ‘systemd-coredump’ has unknown group ‘systemd-coredump’ setting up /etc... ``` Oversight of #133166 --- nixos/modules/system/boot/systemd.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'nixos/modules/system/boot/systemd.nix') diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index 6671592202f..9693e2e377a 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -1060,6 +1060,7 @@ in uid = config.ids.uids.systemd-coredump; group = "systemd-coredump"; }; + users.groups.systemd-coredump = {}; users.users.systemd-network = { uid = config.ids.uids.systemd-network; group = "systemd-network"; -- cgit 1.4.1