2023-10-06 06:28:56 +00:00
|
|
|
{ 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
|
2021-08-05 14:01:03 +00:00
|
|
|
python3Packages.binwalk-full
|
2023-07-06 18:49:33 +00:00
|
|
|
|
|
|
|
fusee-launcher
|
2020-11-17 01:51:13 +00:00
|
|
|
];
|
|
|
|
|
2024-03-02 03:13:17 +00:00
|
|
|
users.users.artemis.extraGroups = [
|
|
|
|
"adbusers"
|
|
|
|
"wireshark"
|
|
|
|
];
|
2020-11-17 01:51:13 +00:00
|
|
|
}
|