kali/flake.lock: Update

Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/d233902339c02a9c334e7e593de68855ad26c4cb?narHash=sha256-30sZNZoA1cqF5JNO9fVX%2BwgiQYjB7HJqqJ4ztCDeBZE%3D' (2026-05-15)
  → 'github:NixOS/nixpkgs/e9a7635a57597d9754eccebdfc7045e6c8600e6b?narHash=sha256-u6WU/yd/o8iYQrHX3RAwO1hYa3LkoSL%2BWNQD0rJfJZQ%3D' (2026-05-29)
This commit is contained in:
Tibo De Peuter 2026-05-31 12:54:50 +02:00
parent 6c66abf88d
commit 67f3e4b94c
No known key found for this signature in database
GPG key ID: 9187B5FA0F4B6F6D
2 changed files with 12 additions and 10 deletions

6
kali/flake.lock generated
View file

@ -20,11 +20,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1778869304, "lastModified": 1780030872,
"narHash": "sha256-30sZNZoA1cqF5JNO9fVX+wgiQYjB7HJqqJ4ztCDeBZE=", "narHash": "sha256-u6WU/yd/o8iYQrHX3RAwO1hYa3LkoSL+WNQD0rJfJZQ=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d233902339c02a9c334e7e593de68855ad26c4cb", "rev": "e9a7635a57597d9754eccebdfc7045e6c8600e6b",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -17,6 +17,15 @@
in { in {
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
packages = with pkgs; [ packages = with pkgs; [
# Hardware hacking
arduino-ide
avrdude
imsprog
minicom
screen
# Software hacking
binwalk
burpsuite burpsuite
dig dig
dirb # Web content scanner dirb # Web content scanner
@ -52,13 +61,6 @@
tmux tmux
steam-run steam-run
]; ];
shellHook = ''
mkdir -p ~/Downloads/TryHackMe
cd $_
python -m venv .venv
source .venv/bin/activate
'';
}; };
}); });
} }