kittehcluster/serverinfra/shell.nix
2024-08-02 11:47:00 -04:00

15 lines
214 B
Nix

{
pkgs ? import <nixpkgs> { },
}: pkgs.mkShell {
buildInputs = with pkgs; [
python312
# Packages
python312Packages.pyyaml
python312Packages.termcolor
];
shellHook = ''
./shell
'';
}