diff --git a/devshell/default.nix b/devshell/default.nix index 2ed3895..38d255b 100644 --- a/devshell/default.nix +++ b/devshell/default.nix @@ -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}; [ diff --git a/devshell/neuro.nix b/devshell/neuro.nix new file mode 100644 index 0000000..a78ef18 --- /dev/null +++ b/devshell/neuro.nix @@ -0,0 +1,7 @@ +{ + system, + pkgs, + self, +}: pkgs.mkShell { + buildInputs = []; +}