mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
replace pwndbg with gef
This commit is contained in:
parent
6fa15fa684
commit
50cb0aac28
2 changed files with 9 additions and 2 deletions
|
@ -24,7 +24,14 @@
|
||||||
sway = import ./modules/sway.nix;
|
sway = import ./modules/sway.nix;
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosModule = { ... }: { imports = builtins.attrValues self.nixosModules; };
|
nixosModule = { pkgs, ... }: {
|
||||||
|
imports = builtins.attrValues self.nixosModules;
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(_: _: {
|
||||||
|
gef = pkgs.callPackage ./pkgs/gef { };
|
||||||
|
})
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
nixosConfigurations = self.lib.getHosts inputs ./hosts;
|
nixosConfigurations = self.lib.getHosts inputs ./hosts;
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ in
|
||||||
dhcpdump
|
dhcpdump
|
||||||
dirb
|
dirb
|
||||||
exiftool
|
exiftool
|
||||||
|
gef
|
||||||
ghidra-bin
|
ghidra-bin
|
||||||
gobuster
|
gobuster
|
||||||
iptables-nftables-compat
|
iptables-nftables-compat
|
||||||
|
@ -21,7 +22,6 @@ in
|
||||||
metasploit
|
metasploit
|
||||||
nmap
|
nmap
|
||||||
openvpn
|
openvpn
|
||||||
pwndbg
|
|
||||||
remmina
|
remmina
|
||||||
socat
|
socat
|
||||||
thc-hydra
|
thc-hydra
|
||||||
|
|
Loading…
Reference in a new issue