21 lines
347 B
Nix
21 lines
347 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs = {
|
|
adb.enable = true;
|
|
wireshark = {
|
|
enable = true;
|
|
package = pkgs.wireshark-qt;
|
|
};
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
apktool
|
|
aircrack-ng
|
|
nmap
|
|
pwndbg
|
|
python3Packages.binwalk-full
|
|
];
|
|
|
|
users.users.artemis.extraGroups = [ "adbusers" "wireshark" ];
|
|
}
|