Lists aren't allowed in INI, apparently

This commit is contained in:
niten 2024-05-28 11:41:46 -07:00
parent a063049045
commit 79540cf3c6
1 changed files with 2 additions and 2 deletions

View File

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