dotfiles/nixos/msi/modules/js.nix

12 lines
156 B
Nix
Raw Permalink Normal View History

2024-07-27 16:13:48 +02:00
{ pkgs, config, ... }:
{
home.sessionVariables = {
npm_config_prefix = "${config.xdg.cacheHome}/npm";
};
home.packages = with pkgs; [
nodejs
];
}