mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +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;
|
||||
};
|
||||
|
||||
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;
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@ in
|
|||
dhcpdump
|
||||
dirb
|
||||
exiftool
|
||||
gef
|
||||
ghidra-bin
|
||||
gobuster
|
||||
iptables-nftables-compat
|
||||
|
@ -21,7 +22,6 @@ in
|
|||
metasploit
|
||||
nmap
|
||||
openvpn
|
||||
pwndbg
|
||||
remmina
|
||||
socat
|
||||
thc-hydra
|
||||
|
|
Loading…
Reference in a new issue