diff options
| author | andromeda <andromeda@lenovo> | 2026-08-17 01:45:44 +0200 |
|---|---|---|
| committer | andromeda <andromeda@lenovo> | 2026-08-17 01:45:44 +0200 |
| commit | 2e5a8167542bd0b5a6d1dea4ea4642c7b06f268e (patch) | |
| tree | 057979514b34e55fa78f901721ebfbddd9f73ced /shell.nix | |
Hello World
Diffstat (limited to 'shell.nix')
| -rw-r--r-- | shell.nix | 13 |
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"; +} |
