Files
nixos/modules/dev/tools.nix
2026-02-04 23:05:15 +01:00

49 lines
584 B
Nix

# modules/dev/tools.nix
# Development tools and CLI utilities
{
config,
pkgs,
lib,
...
}:
{
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
environment.systemPackages = with pkgs; [
bun
pnpm
nodejs
python3
rustup
gcc
gnumake
cmake
pkg-config
git
gh
delta
lazygit
nil
nixfmt
jq
yq
ripgrep
fd
fzf
eza
bat
broot
tealdeer
duf
sd
pv
parallel
claude-code
inputs.opencode.packages.${pkgs.stdenv.hostPlatform.system}.default
];
}