nixos-config/sets/hacking.nix

31 lines
425 B
Nix
Raw Normal View History

{ pkgs, ... }:
2020-11-17 01:51:13 +00:00
{
programs = {
adb.enable = true;
wireshark = {
enable = true;
package = pkgs.wireshark-qt;
};
};
environment.systemPackages = with pkgs; [
2023-05-31 18:11:46 +00:00
apktool
2024-03-18 21:31:00 +00:00
binutils
2022-05-31 04:42:46 +00:00
nmap
python3Packages.binwalk-full
2023-07-06 18:49:33 +00:00
2024-05-20 17:39:57 +00:00
ghidra
2023-07-06 18:49:33 +00:00
fusee-launcher
2024-05-02 01:10:21 +00:00
gdb
2020-11-17 01:51:13 +00:00
];
2024-05-02 01:10:21 +00:00
services.nixseparatedebuginfod.enable = true;
2024-03-02 03:13:17 +00:00
users.users.artemis.extraGroups = [
"adbusers"
"wireshark"
];
2020-11-17 01:51:13 +00:00
}