From 0fd828633113c25a02c038103f0f80b9ca843598 Mon Sep 17 00:00:00 2001 From: soraefir Date: Fri, 15 May 2026 15:47:30 +0200 Subject: [PATCH] type fix --- modules/shared/syscfg/server.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/shared/syscfg/server.nix b/modules/shared/syscfg/server.nix index b72ee84..0253134 100644 --- a/modules/shared/syscfg/server.nix +++ b/modules/shared/syscfg/server.nix @@ -34,7 +34,7 @@ in with lib; { setup = { trigger = lib.mkOption {type = lib.types.str; default = "";}; script = lib.mkOption {type = lib.types.nullOr lib.types.package; default = null;}; - envFile = lib.mkOption {type = lib.types.nullOr lib.types.str; default = null;}; + envFile = lib.mkOption {type = with lib.types; coercedTo str (x: [x]) (listOf str); default = [];}; }; }; }));