added stuff
This commit is contained in:
parent
937f28770d
commit
236b8c2a6b
907 changed files with 70990 additions and 0 deletions
24
nyx/homes/notashelf/packages/cli/whitehat.nix
Normal file
24
nyx/homes/notashelf/packages/cli/whitehat.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
osConfig,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf;
|
||||
inherit (osConfig) modules;
|
||||
|
||||
prg = modules.system.programs;
|
||||
dev = modules.device;
|
||||
acceptedTypes = ["desktop" "laptop" "lite" "hybrid"];
|
||||
in {
|
||||
config = mkIf ((builtins.elem dev.type acceptedTypes) && prg.cli.enable) {
|
||||
home.packages = with pkgs; [
|
||||
# CLI
|
||||
binwalk
|
||||
binutils
|
||||
diffoscopeMinimal
|
||||
nmap
|
||||
nmapsi4
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue