From 98714efaa89d2abdafc80b4d532109cca93ad79d Mon Sep 17 00:00:00 2001 From: Cormac Shannon Date: Fri, 11 Apr 2025 21:57:25 +0100 Subject: [PATCH] nix --- shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..fb346e9 --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + # nativeBuildInputs is usually what you want -- tools you need to run + nativeBuildInputs = with pkgs.buildPackages; [ + lua51Packages.lua + ]; + shellHook = '' + exec fish + ''; +} \ No newline at end of file