diff --git a/nixos/modules/services/continuous-integration/woodpecker/agents.nix b/nixos/modules/services/continuous-integration/woodpecker/agents.nix index fb86e854d294..62719ee934af 100644 --- a/nixos/modules/services/continuous-integration/woodpecker/agents.nix +++ b/nixos/modules/services/continuous-integration/woodpecker/agents.nix @@ -116,16 +116,16 @@ in extraGroups = [ "podman" ]; - environmentFile = "/run/secrets/woodpecker/agent-secret.txt"; + environmentFile = [ "/run/secrets/woodpecker/agent-secret.txt" ]; }; exec = { environment = { WOODPECKER_SERVER = "localhost:9000"; - WOODPECKER_BACKEND = "exec"; + WOODPECKER_BACKEND = "local"; }; - environmentFile = "/run/secrets/woodpecker/agent-secret.txt"; + environmentFile = [ "/run/secrets/woodpecker/agent-secret.txt" ]; }; }; description = lib.mdDoc "woodpecker-agents configurations";