NixOS/home/programs/node.nix

17 lines
296 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
2024-06-12 09:54:11 +07:00
{
home.packages = with pkgs.nodePackages_latest; [
nodejs
pnpm
prettier
];
home.sessionPath = [ "${config.home.homeDirectory}/.local/npm/bin" ];
home.file.".npmrc".text =
# ini
''
prefix=${config.home.homeDirectory}/.local/npm
'';
2024-06-12 09:54:11 +07:00
}