Switched back to unstable; fixed evil-winrm package

This commit is contained in:
Random936
2024-09-23 19:53:23 -07:00
parent 0acb48c9a7
commit e6a40d9254
12 changed files with 333 additions and 28 deletions

View File

@@ -1,7 +1,11 @@
{ pkgs, ... }: {
{ lib, config, pkgs, ... }:
let
mypkgs = import ../packages/all-packages.nix {
inherit pkgs lib config;
};
in {
# Hacking specific packages.
home.packages = with pkgs; [
home.packages = (with pkgs; [
yara
nmap
john
@@ -12,20 +16,21 @@
wpscan
openssl
remmina
netexec
inetutils
thc-hydra
exploitdb
responder
burpsuite
evil-winrm
feroxbuster
crackmapexec
(wordlists.override {
lists = with pkgs; [
rockyou
seclists
];
})
];
]) ++ (with mypkgs; [
evil-winrm
]);
}