thicc shell init

This commit is contained in:
alisceon 2025-12-15 16:00:57 +01:00
parent c9e047a1af
commit 8f5f96ea36
2 changed files with 35 additions and 0 deletions

20
util/thicc-shell.nix Normal file
View file

@ -0,0 +1,20 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "nixos_config";
buildInputs = with pkgs; [
xonsh
python3
python3Packages.scapy
python3Packages.pyyaml
python3Packages.requests
];
SHELL_TYPE = "THICC";
shellHook = ''
echo "NixOS Config Shell"
${pkgs.xonsh}/bin/xonsh
'';
}