nixos-config/sets/hacking.nix
2024-10-12 00:47:08 +00:00

35 lines
487 B
Nix

{ pkgs, config, ... }:
{
programs = {
adb.enable = true;
wireshark = {
enable = true;
package = pkgs.wireshark-qt;
};
};
environment.systemPackages = with pkgs; [
apktool
imhex
llvm
nmap
python3Packages.binwalk-full
ghidra
fusee-launcher
gdb
ltrace
config.boot.kernelPackages.perf
];
services.nixseparatedebuginfod.enable = true;
users.users.artemis.extraGroups = [
"adbusers"
"wireshark"
];
}