Merge pull request #215345 from Izorkin/fix-coredump-id

nixos/systemd-coredump: fix group id
This commit is contained in:
Nick Cao 2023-02-09 13:52:05 +08:00 committed by GitHub
commit aef8797863
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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) {