summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2026-08-17 01:45:44 +0200
committerandromeda <andromeda@lenovo>2026-08-17 01:45:44 +0200
commit2e5a8167542bd0b5a6d1dea4ea4642c7b06f268e (patch)
tree057979514b34e55fa78f901721ebfbddd9f73ced /shell.nix
Hello World
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..8845443
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,13 @@
+let
+ pkgs = import <nixpkgs> {};
+in
+pkgs.mkShellNoCC {
+ packages = [
+ pkgs.cabal-install
+ pkgs.ghc
+ pkgs.vulkan-headers
+ pkgs.vulkan-loader
+ pkgs.pkg-config
+ ];
+ LIBRARY_PATH = "${pkgs.vulkan-loader}/lib";
+}