From ecf327d697f477f903980295a9ba0a00301f9ecc Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Tue, 5 May 2020 23:59:38 +0200 Subject: [PATCH] nixos/sssd: add to system.nssDatabases.group too nixos/modules/config/nsswitch.nix uses `passwdArray` for both `passwd` and `group`, but when moving this into the sss module in edddc7c82a848f1b1f23344a338b5d56b38178c0, it didn't get split appropriately. --- nixos/modules/services/misc/sssd.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/sssd.nix b/nixos/modules/services/misc/sssd.nix index 77f6ccfe64f0..fbee02b8e244 100644 --- a/nixos/modules/services/misc/sssd.nix +++ b/nixos/modules/services/misc/sssd.nix @@ -76,9 +76,10 @@ in { system.nssModules = optional cfg.enable pkgs.sssd; system.nssDatabases = { + group = [ "sss" ]; passwd = [ "sss" ]; - shadow = [ "sss" ]; services = [ "sss" ]; + shadow = [ "sss" ]; }; services.dbus.packages = [ pkgs.sssd ]; })