31 lines
421 B
Nix
31 lines
421 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs = {
|
|
adb.enable = true;
|
|
wireshark = {
|
|
enable = true;
|
|
package = pkgs.wireshark-qt;
|
|
};
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
apktool
|
|
llvm
|
|
nmap
|
|
python3Packages.binwalk-full
|
|
|
|
ghidra
|
|
|
|
fusee-launcher
|
|
|
|
gdb
|
|
];
|
|
|
|
services.nixseparatedebuginfod.enable = true;
|
|
|
|
users.users.artemis.extraGroups = [
|
|
"adbusers"
|
|
"wireshark"
|
|
];
|
|
}
|