dotfiles/homes/x86_64-linux/christopher@cobalt/config/dev.nix
2025-07-31 10:06:20 +02:00

28 lines
532 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
zx # Tool for writing better scripts
trurl # Parsing and manipulating URLs via CLI
onefetch # Git information tool
tokei # Like cloc
zeal # Offline documentation browser
just # Just a command runner
claude-code
# Build tools
cargo
glibc
gcc
php82
php82Packages.composer
bun
nodejs_20
nodejs_20.pkgs.pnpm
];
programs.direnv.enable = true;
programs.direnv.nix-direnv.enable = true;
programs.go.enable = true;
}