omniflake/home/on-server.nix
2025-04-15 15:35:30 +02:00

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
];
}