Files
nixos-config/home/common/programs/dev.nix
T
2026-08-19 22:38:19 +01:00

69 lines
958 B
Nix

{
pkgs,
...
}:
{
imports = [
./codex.nix
./pi.nix
./ralph-claude-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
inotify-tools
devenv
sshfs
file
nmap
lsof
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
];
}