Files
nixos-config/home/common/programs/dev.nix
T
naps62 21d9f89674 feat: add missing cli tooling
Ports what was apt-installed on the ubuntu box. rtk matters most: the
claude hooks rewrite commands through it, and it silently no-ops without.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-17 12:39:11 +00:00

77 lines
1.0 KiB
Nix

{
pkgs,
...
}:
{
imports = [
./codex.nix
./ralph-claude-code.nix
./t3-code.nix
];
programs = {
direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
# Add devenv support
stdlib = ''
# Source devenv direnvrc for use_devenv function
eval "$(devenv direnvrc)"
'';
};
};
home.packages = with pkgs; [
imagemagick
doctl
awscli2
terraform
inotify-tools
devenv
bruno
sshfs
coturn
file
usbutils
nmap
lsof
ktlint
croc
opencode
process-compose
# typst
typst
typstyle
ruby
mkcert
nss.tools
tea
just # project command runner
lazydocker # docker TUI
dust # du replacement
duf # df replacement
rtk # cli proxy the claude hooks rewrite commands through
wget
sqlite
shellcheck
cmake
ninja
git-filter-repo
expect
whois
p7zip
poppler-utils # pdftotext
jpegoptim
sshpass
pipx
];
}