From f306cc84bc47eadd658a962eb7b4b2f1d166cf58 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 1 Apr 2023 13:14:18 +0200 Subject: [PATCH] hosts: nixos: porthos: services: enable woodpecker --- hosts/nixos/porthos/services.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/nixos/porthos/services.nix b/hosts/nixos/porthos/services.nix index d0dbc82..4085957 100644 --- a/hosts/nixos/porthos/services.nix +++ b/hosts/nixos/porthos/services.nix @@ -148,5 +148,14 @@ in enable = true; startAtBoot = true; # Server must be started to ensure clients can connect }; + woodpecker = { + enable = true; + # Avoid clashes with drone + port = 3035; + rpcPort = 3036; + runners = [ "docker" "exec" ]; + secretFile = secrets."woodpecker/gitea".path; + sharedSecretFile = secrets."woodpecker/secret".path; + }; }; }