22 lines
282 B
Nix
22 lines
282 B
Nix
{ config, pkgs, inputs, lib, ... }:
|
|
|
|
{
|
|
home.file.".npmrc".text = ''
|
|
prefix = ${config.xdg.dataHome}/npm/packages
|
|
'';
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
# development
|
|
bundler
|
|
bundix
|
|
nodejs
|
|
appimage-run
|
|
yarn
|
|
|
|
];
|
|
|
|
imports = [
|
|
./minimal.nix
|
|
];
|
|
}
|