dotfiles/homes/x86_64-linux/christopher@cobalt/config/dev.nix
2025-11-03 10:42:58 +01:00

32 lines
627 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
zx # Tool for writing better scripts
# trurl # Parsing and manipulating URLs via CLI
dig # DNS
onefetch # Git information tool
tokei # Like cloc
zeal # Offline documentation browser
just # Just a command runner
jetbrains-toolbox # Installer for JetBrains IDEs
claude-code
devenv
# Build tools
platformio
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;
}