nix-conf/user/prog.nix

34 lines
579 B
Nix
Raw Normal View History

2024-12-22 23:46:42 -05:00
{
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
coq
coqPackages.coqide
gcc
gdb
pwndbg
pwninit
patchelf
2025-01-01 19:19:34 -05:00
lazygit
2024-12-22 23:46:42 -05:00
]
++ lib.optionals config.u.has.graphical [
(cutter.withPlugins (ps: with ps; [jsdec rz-ghidra sigdb]))
ghidra-bin
sqlitebrowser
];
}