aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-03-17 18:22:50 +0100
committerLinnea Gräf <nea@nea.moe>2024-03-17 18:22:50 +0100
commit55586a64d7037cdc557b8b2c337d284ddb1ac981 (patch)
treef2fc8ebddb4f002487629ea699567d3cb909122d /shell.nix
parentec36c211417456f55ee333d86407f12fa9d55872 (diff)
downloadFirmament-55586a64d7037cdc557b8b2c337d284ddb1ac981.tar.gz
Firmament-55586a64d7037cdc557b8b2c337d284ddb1ac981.tar.bz2
Firmament-55586a64d7037cdc557b8b2c337d284ddb1ac981.zip
Add custom skull texture keybind for items
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
index 330a57a..07f9a1c 100644
--- a/shell.nix
+++ b/shell.nix
@@ -11,5 +11,11 @@ pkgs.mkShell {
temurin-bin-17
reuse
pre-commit
+ glfw
+ libGL
];
+ shellHook = ''
+ export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${pkgs.glfw}/lib"
+ export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${pkgs.libGL}/lib"
+ '';
}