diff --git a/.config/linux/shell/Game.nix b/.config/linux/shell/Game.nix new file mode 100644 index 0000000..2cee283 --- /dev/null +++ b/.config/linux/shell/Game.nix @@ -0,0 +1,13 @@ +with import {}; + +mkShell { + NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [ + stdenv.cc.cc + ]; + NIX_LD = lib.fileContents "${stdenv.cc}/nix-support/dynamic-linker"; + + buildInputs = [ + freesweep + vitetris + ]; +}