Files
dotfiles/home-modules/programming/js.nix
Lennart J. Kurzweg (Nx2) 5c9a92c68e helic cleanup + java
2024-12-15 14:35:43 +01:00

8 lines
104 B
Nix

{ pkgs, lib, host, ... }:
lib.mkIf (host != "NxACE")
{
home.packages = with pkgs; [
nodejs
];
}