disable sandbox
Some checks failed
Activate NixOS Homelab Configuration On Push / build-and-activate (push) Failing after 3s

This commit is contained in:
Satria 2026-03-14 10:50:19 +07:00
commit 04700f6f65

View file

@ -52,12 +52,16 @@
url = "https://git.proxy.${homelab.domain}"; url = "https://git.proxy.${homelab.domain}";
tokenFile = "/root/forgejo-token-runner"; tokenFile = "/root/forgejo-token-runner";
labels = [ "nixos-server" ]; labels = [ "nixos-server" ];
hostPackages = with pkgs; [ bash coreutils git nix nodejs ]; hostPackages = with pkgs; [ bash coreutils git nix nodejs sudo ];
container.enable = false;
}; };
}; };
systemd.services."gitea-runner-nixos-deploy".serviceConfig = { systemd.services."gitea-runner-nixos-deploy" = {
restartIfChanged = false;
serviceConfig = {
NoNewPrivileges = lib.mkForce false; NoNewPrivileges = lib.mkForce false;
RestrictSUIDSGID = lib.mkForce false; RestrictSUIDSGID = lib.mkForce false;
PrivateUsers = lib.mkForce false; PrivateUsers = lib.mkForce false;
}; };
};
} }