diff --git a/hosts/fw.cloonar.com/modules/gitea.nix b/hosts/fw.cloonar.com/modules/gitea.nix index db3fa34..69069bb 100644 --- a/hosts/fw.cloonar.com/modules/gitea.nix +++ b/hosts/fw.cloonar.com/modules/gitea.nix @@ -148,17 +148,15 @@ in }; }; - environment.systemPackages = with pkgs; [ - nodejs_21 - ]; - virtualisation.podman.enable = true; - services.gitea-actions-runner.instances.main = { enable = true; url = "https://git.cloonar.com"; name = "main"; tokenFile = "/run/secrets/gitea-runner-token"; labels = [ "nixos-docker" ]; + hostPackages = with pkgs; [ + nodejs + ]; }; users.users.gitea-runner = runner-user;