feat: +neuro devshell

This commit is contained in:
2026-02-20 12:06:55 +00:00
parent 9010b2678e
commit 799ad9a15d
2 changed files with 8 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
pure-c = import ./pure-c.nix { inherit self system pkgs; }; pure-c = import ./pure-c.nix { inherit self system pkgs; };
rust = import ./rust.nix { inherit self system pkgs; }; rust = import ./rust.nix { inherit self system pkgs; };
haskell = import ./haskell.nix { inherit self system pkgs; }; haskell = import ./haskell.nix { inherit self system pkgs; };
neuro = import ./neuro.nix { inherit self system pkgs; };
default = pkgs.mkShell { default = pkgs.mkShell {
buildInputs = buildInputs =
(with self.packages.${system}; [ (with self.packages.${system}; [

7
devshell/neuro.nix Normal file
View File

@@ -0,0 +1,7 @@
{
system,
pkgs,
self,
}: pkgs.mkShell {
buildInputs = [];
}