2
2
mirror of https://git.feal.no/felixalb/nixos-config.git synced 2024-12-22 04:07:28 +01:00

Compare commits

...

2 Commits

Author SHA1 Message Date
3f6f68c010 I'm on a 🚂🚋🚋🚋🚋˙⊹⁺. 2024-11-23 08:39:40 +01:00
823f5b3d12 shells/CTF: darwin = tier 300 support 2024-11-23 08:29:23 +01:00
3 changed files with 9 additions and 6 deletions

View File

@ -79,6 +79,8 @@
''; '';
}; };
programs.mosh.enable = true;
users.users.felixalb = { users.users.felixalb = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ extraGroups = [

View File

@ -20,6 +20,7 @@
feishin feishin
gnutar gnutar
iterm2 iterm2
mosh
nix-index nix-index
nodejs nodejs
spotify spotify

View File

@ -27,14 +27,10 @@ in { pkgs ? import <nixpkgs> {} }:
feh feh
ghidra ghidra
pwninit
metasploit
sqlmap sqlmap
exiftool exiftool
steghide
# stegsolve
dig dig
nmap nmap
@ -49,12 +45,16 @@ in { pkgs ? import <nixpkgs> {} }:
hashcat hashcat
] ++ lib.optionals (pkgs.stdenv.isLinux) [ ] ++ lib.optionals (pkgs.stdenv.isLinux) [
sage # stegsolve
gdb gdb
metasploit
pwndbg pwndbg
pwninit
ropgadget ropgadget
wireshark sage
steghide
tcpdump tcpdump
wireshark
]; ];
} }