This commit is contained in:
mia 2026-04-23 09:14:31 +02:00
parent 0d2340b7e8
commit a74be2fc31
11 changed files with 2367 additions and 184 deletions

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
let
pkgs = import <nixpkgs> {};
in pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (python-pkgs: [
python-pkgs.pygame
]))
];
}