This commit is contained in:
albert 2025-02-02 21:57:07 -08:00
parent 64bb2d779a
commit d9086da03f
Signed by: albert
GPG key ID: 3895DD267CA11BA9

View file

@ -23,7 +23,20 @@
];
url = "https://git.sysctl.io";
tokenFile = /run/secrets/services/forgejo_token;
hostPackages = with pkgs; [ nix deploy-rs nodejs coreutils git gnutar gzip ];
hostPackages = with pkgs; [
nodejs_20 # Explicitly use Node.js 20.x
deploy-rs
coreutils
git
gnutar
gzip
];
# Add Node.js to PATH
environment = {
PATH = "${pkgs.nodejs_20}/bin";
NODE_PATH = "${pkgs.nodejs_20}/lib/node_modules";
};
};
};