install ghidra as nixos option

This commit is contained in:
cy 2025-05-27 11:28:57 -04:00
parent 10749634ee
commit e174c25353
2 changed files with 11 additions and 1 deletions

View file

@ -57,7 +57,6 @@
gdb
fuzzel
hugo
ghidra
sccache
awscli2
p7zip

View file

@ -94,6 +94,9 @@
trustedInterfaces = [
"tailscale0"
];
extraInputRules = ''
ip saddr 192.168.100.0/24 tcp dport 9234 accept
'';
};
hosts = {
"100.122.132.30" = [ "s3.cy7.sh" ];
@ -417,4 +420,12 @@
wl-clipboard
];
};
programs.ghidra = {
enable = true;
package = pkgs.ghidra.withExtensions (p: with p; [
findcrypt
ret-sync
]);
};
}