From 15babfbc12bfd5649f149dffa37f7d4b71234ed8 Mon Sep 17 00:00:00 2001 From: "Janik H." Date: Thu, 2 Nov 2023 18:14:46 +0100 Subject: [PATCH] nixos/woodpecker-server: fix environmentFile example --- .../services/continuous-integration/woodpecker/server.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/continuous-integration/woodpecker/server.nix b/nixos/modules/services/continuous-integration/woodpecker/server.nix index dc8f1567f1e3..38b42f7288c0 100644 --- a/nixos/modules/services/continuous-integration/woodpecker/server.nix +++ b/nixos/modules/services/continuous-integration/woodpecker/server.nix @@ -33,7 +33,7 @@ in environmentFile = lib.mkOption { type = with lib.types; coercedTo path (f: [ f ]) (listOf path); default = [ ]; - example = "/root/woodpecker-server.env"; + example = [ "/root/woodpecker-server.env" ]; description = lib.mdDoc '' File to load environment variables from. This is helpful for specifying secrets.