mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-06 12:59:22 +02:00
sync config
This commit is contained in:
parent
b299b688c8
commit
32460978a4
1 changed files with 21 additions and 3 deletions
|
@ -145,8 +145,12 @@ in
|
|||
environment = {
|
||||
WOODPECKER_HOST = "https://ci.missing.ninja";
|
||||
WOODPECKER_OPEN = "true";
|
||||
WOODPECKER_GITEA = "true";
|
||||
WOODPECKER_GITEA_URL = "https://git.mixel.cloud";
|
||||
WOODPECKER_FORGEJO = "true";
|
||||
WOODPECKER_ADMIN = "irgendwas";
|
||||
WOODPECKER_FORGEJO_URL = "https://git.missing.ninja";
|
||||
WOODPECKER_FORGEJO_CLIENT = "";
|
||||
WOODPECKER_FORGEJO_SECRET = "";
|
||||
WOODPECKER_AGENT_SECRET = "";
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -155,11 +159,25 @@ in
|
|||
enable = true;
|
||||
environment = {
|
||||
WOODPECKER_SERVER = "localhost:9000";
|
||||
WOODPECKER_MAX_WORKFLOWS = "6";
|
||||
WOODPECKER_MAX_WORKFLOWS = "8";
|
||||
WOODPECKER_AGENT_SECRET = "";
|
||||
WOODPECKER_BACKEND= "docker";
|
||||
DOCKER_HOST = "unix:///run/podman/podman.sock";
|
||||
};
|
||||
extraGroups = [ "podman" ];
|
||||
};
|
||||
};
|
||||
|
||||
virtualisation.podman.defaultNetwork.settings.dns_enable = true;
|
||||
virtualisation.podman.enable = true;
|
||||
virtualisation.podman.dockerCompat = true;
|
||||
|
||||
networking.firewall.interfaces."podman+" = {
|
||||
allowedUDPPorts = [ 53 ];
|
||||
allowedTCPPorts = [ 53 ];
|
||||
};
|
||||
|
||||
|
||||
users.users.backupftp = {
|
||||
isNormalUser = true;
|
||||
initialPassword = "backupPassword";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue