nix-conf/user/prog.nix
2025-03-24 17:44:05 -05:00

35 lines
579 B
Nix

{
config,
lib,
pkgs,
...
}:
lib.mkIf config.u.has.prog {
home.packages = with pkgs;
[
(python312.withPackages (python-pkgs: [
python-pkgs.pwntools
python-pkgs.requests
python-pkgs.pyjwt
python-pkgs.flask
]))
nodejs
deno
gnumake
gcc
gdb
pwndbg
pwninit
patchelf
lazygit
pyp
coq_8_20
zig
]
++ lib.optionals config.u.has.graphical [
(cutter.withPlugins (ps: with ps; [jsdec rz-ghidra sigdb]))
ghidra-bin
sqlitebrowser
];
}