notes and framework for nix-shell env

This commit is contained in:
APEX FIGHT
2025-10-31 21:39:18 -04:00
parent 359a34ddc5
commit a884e64fe0
2 changed files with 17 additions and 0 deletions

13
src/shell.nix Normal file
View File

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