gitea runner

This commit is contained in:
2026-02-07 14:05:25 -07:00
parent 2f176f9474
commit 3d9a162b1c

View File

@@ -7,7 +7,7 @@
url = "https://git.alexmickelson.guru"; url = "https://git.alexmickelson.guru";
tokenFile = "/data/runner/gitea-infrastructure-token.txt"; tokenFile = "/data/runner/gitea-infrastructure-token.txt";
labels = [ labels = [
"home-server" "home-server:host" # Changed from just "home-server"
"native:host" "native:host"
]; ];
hostPackages = with pkgs; [ hostPackages = with pkgs; [
@@ -25,7 +25,13 @@
kubernetes-helm kubernetes-helm
]; ];
settings = { settings = {
container = { enabled = false; }; container = {
enabled = false;
};
# Add explicit host settings
host = {
workdir_parent = "/var/lib/gitea-runner/infrastructure";
};
}; };
}; };
}; };