From 9eb544337c529a7de676722b652a63fccc3ed180 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Sun, 2 Nov 2025 20:53:31 -0800 Subject: [PATCH] services/stirling-pdf: change type of environmentFiles to list --- services/stirling-pdf.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/stirling-pdf.nix b/services/stirling-pdf.nix index 10c95bc..de0c57e 100644 --- a/services/stirling-pdf.nix +++ b/services/stirling-pdf.nix @@ -21,7 +21,7 @@ in enable = mkEnableOption "Enables stirling-pdf module"; environmentFiles = mkOption { - type = types.path; + type = types.listOf types.path; default = null; description = "Path of environment files containing secrets for the stirling-pdf config"; example = "../secrets/stirling-pdf.env";