py_yugi_clone/shell.nix
Alessio Rondelli 4b2a7fc721 first commit
2024-07-10 20:08:18 +02:00

13 lines
331 B
Nix

{ pkgs ? import <nixpkgs> {config = { allowUnfree = false; cudaSupport = false;}; }}:
pkgs.mkShell {
buildInputs = with pkgs; [
(python311.withPackages(ps: with ps; [ pip numpy notebook tkinter pygame-ce ]))
];
#cudaPackages.cudatoolkit
shellHook = ''
echo "You are now using a NIX environment"
idle3.11
'';
}