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:
@@ -848,6 +848,10 @@ in
|
|||||||
[ "mymachines" ]
|
[ "mymachines" ]
|
||||||
(mkAfter [ "systemd" ])
|
(mkAfter [ "systemd" ])
|
||||||
]);
|
]);
|
||||||
|
group = (mkMerge [
|
||||||
|
[ "mymachines" ]
|
||||||
|
(mkAfter [ "systemd" ])
|
||||||
|
]);
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = [ systemd ];
|
environment.systemPackages = [ systemd ];
|
||||||
|
|||||||
Reference in New Issue
Block a user