hosts: nixos: porthos: services: enable woodpecker

This commit is contained in:
Bruno BELANYI 2023-04-01 13:14:18 +02:00
parent 7e06f75a5d
commit f306cc84bc
1 changed files with 9 additions and 0 deletions

View File

@ -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;
};
};
}