Testing
This commit is contained in:
parent
64bb2d779a
commit
d9086da03f
1 changed files with 14 additions and 1 deletions
|
@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue