Switching from yabai to aerospace; moved module nix files to directory

This commit is contained in:
Random936
2024-11-01 21:53:46 -07:00
parent 830e426bd1
commit e8b184b4ae
9 changed files with 112 additions and 108 deletions

37
home/modules/hacking.nix Normal file
View File

@@ -0,0 +1,37 @@
{ lib, config, pkgs, ... }:
let
mypkgs = import ../packages/all-packages.nix {
inherit pkgs lib config;
};
in {
# Hacking specific packages.
home.packages = (with pkgs; [
yara
nmap
john
ffuf
amass
nikto
sqlmap
wpscan
openssl
remmina
netexec
inetutils
thc-hydra
exploitdb
responder
burpsuite
feroxbuster
(wordlists.override {
lists = with pkgs; [
rockyou
seclists
];
})
]) ++ (with mypkgs; [
evil-winrm
binaryninja
]);
}