disable sandbox
Some checks failed
Activate NixOS Homelab Configuration On Push / build-and-activate (push) Failing after 3s
Some checks failed
Activate NixOS Homelab Configuration On Push / build-and-activate (push) Failing after 3s
This commit is contained in:
parent
7f7611cec9
commit
04700f6f65
1 changed files with 9 additions and 5 deletions
|
|
@ -52,12 +52,16 @@
|
|||
url = "https://git.proxy.${homelab.domain}";
|
||||
tokenFile = "/root/forgejo-token-runner";
|
||||
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 = {
|
||||
NoNewPrivileges = lib.mkForce false;
|
||||
RestrictSUIDSGID = lib.mkForce false;
|
||||
PrivateUsers = lib.mkForce false;
|
||||
systemd.services."gitea-runner-nixos-deploy" = {
|
||||
restartIfChanged = false;
|
||||
serviceConfig = {
|
||||
NoNewPrivileges = lib.mkForce false;
|
||||
RestrictSUIDSGID = lib.mkForce false;
|
||||
PrivateUsers = lib.mkForce false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue