commit fac6649189b5746f01ee4ae96a531f0d3fabdb7f Author: Daniel Siepmann Date: Tue Mar 26 08:20:09 2024 +0100 INIT diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6e68499 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/docs/ diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..ed5cf4d --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ + pkgs ? import { } +}: + +pkgs.mkShellNoCC { + name = "Godot"; + buildInputs = [ + pkgs.godot_4 + # C# will be available with https://github.com/NixOS/nixpkgs/pull/285941/ + ]; +}