Lists are comma-separated

This commit is contained in:
niten 2024-06-05 12:29:04 -07:00
parent 590bc0abf2
commit 54d8c7d49d
1 changed files with 2 additions and 2 deletions

View File

@ -260,8 +260,8 @@ in {
sssd = { sssd = {
config_file_version = 2; config_file_version = 2;
reconnection_retries = 3; reconnection_retries = 3;
services = concatStringsSep " " [ "nss" "pam" "ssh" ]; services = concatStringsSep ", " [ "nss" "pam" "ssh" ];
domains = concatStringsSep " " [ cfg.ldap.domain ]; domains = concatStringsSep ", " [ cfg.ldap.domain ];
}; };
pam = { reconnection_retries = 3; }; pam = { reconnection_retries = 3; };