nixos/systemd-coredump: fix group id

This commit is contained in:
Izorkin
2023-02-08 20:48:13 +03:00
committed by Florian Brandes
parent c91f2d7c5c
commit f849e64c0a
2 changed files with 4 additions and 1 deletions

View File

@@ -510,6 +510,7 @@ in
#seeks = 148; # removed 2020-06-21
prosody = 149;
i2pd = 150;
systemd-coredump = 151;
systemd-network = 152;
systemd-resolve = 153;
systemd-timesync = 154;

View File

@@ -66,7 +66,9 @@ in {
uid = config.ids.uids.systemd-coredump;
group = "systemd-coredump";
};
users.groups.systemd-coredump = {};
users.groups.systemd-coredump = {
gid = config.ids.gids.systemd-coredump;
};
})
(mkIf (!cfg.enable) {