nixos/sssd: fix the module

'system.nssModules' was not set correctly

fix #91242
This commit is contained in:
Bruno Bigras
2020-08-24 10:10:47 -04:00
parent b77d8ead28
commit 5d36e00b7d
3 changed files with 21 additions and 1 deletions
+3 -1
View File
@@ -69,7 +69,7 @@ in {
mode = "0400";
};
system.nssModules = pkgs.sssd;
system.nssModules = [ pkgs.sssd ];
system.nssDatabases = {
group = [ "sss" ];
passwd = [ "sss" ];
@@ -92,4 +92,6 @@ in {
services.openssh.authorizedKeysCommand = "/etc/ssh/authorized_keys_command";
services.openssh.authorizedKeysCommandUser = "nobody";
})];
meta.maintainers = with maintainers; [ bbigras ];
}