Adding nix shell and reworking some parser/local file manager stuff

This commit is contained in:
2026-01-23 23:09:56 -06:00
parent ad2e074991
commit 45cd325818
6 changed files with 48 additions and 16 deletions

14
shell.nix Normal file
View File

@@ -0,0 +1,14 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
dotnet-sdk
omnisharp-roslyn
];
shellHook = ''
echo "// SESSION ZERO DEV SHELL //"
'';
}