Files
nixos/modules/dev/tools.nix
2026-02-16 18:33:00 +01:00

65 lines
763 B
Nix

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