From 79540cf3c622fbaceae5009cf5594c6f54cc5622 Mon Sep 17 00:00:00 2001 From: niten Date: Tue, 28 May 2024 11:41:46 -0700 Subject: [PATCH] Lists aren't allowed in INI, apparently --- paris-container.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paris-container.nix b/paris-container.nix index 783f59a..888d27b 100644 --- a/paris-container.nix +++ b/paris-container.nix @@ -176,8 +176,8 @@ in { config_file_version = 2; reconnection_retries = 3; sbus_timeout = 30; - services = [ "nss" "pam" "ssh" ]; - domains = [ cfg.ldap.domain ]; + services = concatStringsSep " " [ "nss" "pam" "ssh" ]; + domains = concatStringsSep " " [ cfg.ldap.domain ]; }; pam = { reconnection_retries = 3; };