From 42a88582940ad7b5d018a0f1cc0db3a52868b9e0 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Mon, 29 Jan 2024 00:56:59 +0300 Subject: [PATCH] Shell : Add game shell with tetris and minesweeper. --- .config/linux/shell/Game.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .config/linux/shell/Game.nix 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 + ]; +}