hacking config
This commit is contained in:
parent
f2e43b6927
commit
455f0022c4
21
nixos/packages/hacking/packages.nix
Normal file
21
nixos/packages/hacking/packages.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
@ -71,6 +71,7 @@
|
||||
tldr
|
||||
ranger
|
||||
spicetify-cli
|
||||
unzip
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user