feat(forgejo): add packages to runner
Some checks failed
Test / tests (push) Failing after 1s

This commit is contained in:
Felix Schröter 2025-01-19 13:00:37 +01:00
parent 8208ac6db1
commit 372219d320
Signed by: felschr
GPG key ID: 671E39E6744C807D

View file

@ -18,6 +18,14 @@ in
tokenFile = ""; # dynamically retrieved from Forgejo (see further below) tokenFile = ""; # dynamically retrieved from Forgejo (see further below)
name = config.networking.hostName; name = config.networking.hostName;
labels = [ "native:host" ]; labels = [ "native:host" ];
hostPackages = with pkgs; [
nix
gitMinimal
bash
coreutils
curl
nodejs
];
settings = { settings = {
container.network = "host"; container.network = "host";
}; };