3
0
Fork 0
forked from mirrors/nixpkgs

nixos/systemd: add to system.nssDatabases.group too

nixos/modules/config/nsswitch.nix uses `passwdArray` for both `passwd`
and `group`, but when moving this into the systemd module in
c0995d22ee, it didn't get split
appropriately.
This commit is contained in:
Florian Klink 2020-05-06 00:06:40 +02:00
parent 2297508783
commit 36b6e26d40

View file

@ -848,6 +848,10 @@ in
[ "mymachines" ]
(mkAfter [ "systemd" ])
]);
group = (mkMerge [
[ "mymachines" ]
(mkAfter [ "systemd" ])
]);
};
environment.systemPackages = [ systemd ];