service: gitea register

This commit is contained in:
2024-04-07 13:47:49 +02:00
parent 909e2bb494
commit 51b596ea83
2 changed files with 13 additions and 5 deletions

View File

@@ -7,6 +7,10 @@
autoPrune.enable = true;
dockerCompat = true;
};
containers.containersConf.settings = {
# podman seems to not work with systemd-resolved
containers.dns_servers = [ "8.8.8.8" "8.8.4.4" ];
};
};
services.gitea-actions-runner.instances = {
@@ -18,17 +22,21 @@
labels = [
"home"
"debian-latest:docker://node:18-bullseye"
"ubuntu-latest:docker://node:16-bullseye"
"ubuntu-22.04:docker://node:16-bullseye"
"ubuntu-20.04:docker://node:16-bullseye"
"ubuntu-18.04:docker://node:16-buster"
"native:host"
"alpine-latest:docker://alpine:latest"
"nix-master:docker://nix:master"
];
hostPackages = with pkgs; [
bash
curl
gitMinimal
coreutils
wget
curl
gawk
gitMinimal
gnused
nodejs
wget
];
};
};