diff --git a/nixos/modules/services/continuous-integration/woodpecker/agents.nix b/nixos/modules/services/continuous-integration/woodpecker/agents.nix index cc5b903afd59..fb86e854d294 100644 --- a/nixos/modules/services/continuous-integration/woodpecker/agents.nix +++ b/nixos/modules/services/continuous-integration/woodpecker/agents.nix @@ -107,14 +107,14 @@ in default = { }; type = lib.types.attrsOf agentModule; example = { - docker = { + podman = { environment = { WOODPECKER_SERVER = "localhost:9000"; WOODPECKER_BACKEND = "docker"; DOCKER_HOST = "unix:///run/podman/podman.sock"; }; - extraGroups = [ "docker" ]; + extraGroups = [ "podman" ]; environmentFile = "/run/secrets/woodpecker/agent-secret.txt"; };