hacking config

This commit is contained in:
foglar 2024-11-14 10:23:00 +01:00
parent f2e43b6927
commit 455f0022c4
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{
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
];
};
}

View File

@ -71,6 +71,7 @@
tldr
ranger
spicetify-cli
unzip
];
};
}