Merge pull request #96179 from bbigras/sssd

nixos/sssd: fix the module
This commit is contained in:
Anderson Torres
2020-08-25 16:59:11 -03:00
committed by GitHub
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 ];
}