trying again

This commit is contained in:
2026-01-27 22:54:30 -07:00
parent 8948970733
commit 1c3e28612f

View File

@@ -295,10 +295,11 @@
tokenFile = "/data/runner/gitea-infrastructure-token.txt"; tokenFile = "/data/runner/gitea-infrastructure-token.txt";
labels = [ labels = [
"home-server" "home-server"
"home-server:host" "native:host"
]; ];
hostPackages = with pkgs; [ hostPackages = with pkgs; [
bashNonInteractive bashNonInteractive
bash
coreutils coreutils
docker docker
git git
@@ -314,9 +315,6 @@
container = { container = {
enabled = false; enabled = false;
}; };
runner = {
shell = "${pkgs.bashNonInteractive}/bin/bash";
}
}; };
}; };
}; };
@@ -356,7 +354,7 @@
packages = with pkgs; [ packages = with pkgs; [
kubernetes-helm kubernetes-helm
]; ];
shell = pkgs.bashNonInteractive; shell = pkgs.bash;
}; };