This commit is contained in:
2025-04-11 21:57:25 +01:00
parent c0b357d162
commit 98714efaa8

10
shell.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
lua51Packages.lua
];
shellHook = ''
exec fish
'';
}