thicc shell init
This commit is contained in:
parent
c9e047a1af
commit
8f5f96ea36
2 changed files with 35 additions and 0 deletions
20
util/thicc-shell.nix
Normal file
20
util/thicc-shell.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue