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:
parent
2297508783
commit
36b6e26d40
|
@ -848,6 +848,10 @@ in
|
|||
[ "mymachines" ]
|
||||
(mkAfter [ "systemd" ])
|
||||
]);
|
||||
group = (mkMerge [
|
||||
[ "mymachines" ]
|
||||
(mkAfter [ "systemd" ])
|
||||
]);
|
||||
};
|
||||
|
||||
environment.systemPackages = [ systemd ];
|
||||
|
|
Loading…
Reference in a new issue