From 96b52f7bd8c8f3011d4eca578902633e4100aa69 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Wed, 6 Dec 2023 18:00:24 +0100 Subject: [PATCH] add nodejs to gitea --- hosts/fw.cloonar.com/modules/gitea.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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;