config/users/chloe/paperback/home.nix

19 lines
345 B
Nix
Raw Normal View History

2025-05-12 15:19:01 -07:00
{ pkgs, ... }:
{
2025-05-08 00:19:14 -07:00
# these programs are not globally installed to reduce distractions.
# most of these are needed for my work environment.
programs.bun.enable = true;
programs.zed-editor.enable = true;
home.packages = with pkgs; [
doppler
nodejs_22
rustup
typescript
pm2
pnpm
2025-05-12 15:19:01 -07:00
yt-dlp
spotdl
2025-05-27 12:52:11 -07:00
zig
2025-05-08 00:19:14 -07:00
];
}