feat: +neuro devshell

This commit is contained in:
2026-02-20 12:06:55 +00:00
parent 2d289c7f0c
commit 519f531dd5
2 changed files with 8 additions and 0 deletions
+1
View File
@@ -6,6 +6,7 @@
pure-c = import ./pure-c.nix { inherit self system pkgs; };
rust = import ./rust.nix { inherit self system pkgs; };
haskell = import ./haskell.nix { inherit self system pkgs; };
neuro = import ./neuro.nix { inherit self system pkgs; };
default = pkgs.mkShell {
buildInputs =
(with self.packages.${system}; [
+7
View File
@@ -0,0 +1,7 @@
{
system,
pkgs,
self,
}: pkgs.mkShell {
buildInputs = [];
}