22 lines
305 B
Nix
22 lines
305 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {
|
|
hacking.enable = lib.mkEnableOption "enable Hacking module";
|
|
};
|
|
|
|
config = lib.mkIf config.hacking.enable {
|
|
home.packages = with pkgs; [
|
|
ffuf
|
|
wireshark
|
|
termshark
|
|
nmap
|
|
netcat-openbsd
|
|
bettercap
|
|
];
|
|
};
|
|
}
|