This commit is contained in:
soraefir
2026-05-15 15:47:30 +02:00
parent e4aac05b6a
commit 0fd8286331

View File

@@ -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 = [];};
};
};
}));