diff --git a/shell/cuda-shell.nix b/shell/cuda-shell.nix deleted file mode 100644 index a51a3fb..0000000 --- a/shell/cuda-shell.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ pkgs ? import {} }: -pkgs.mkShell { - name = "cuda-env-shell"; - buildInputs = with pkgs; [ - git gitRepo gnupg autoconf curl - procps gnumake util-linux m4 gperf unzip - cudatoolkit linuxPackages.nvidia_x11 - libGLU libGL - xorg.libXi xorg.libXmu freeglut - xorg.libXext xorg.libX11 xorg.libXv xorg.libXrandr zlib - ncurses5 stdenv.cc binutils - ]; - shellHook = '' - export CUDA_PATH=${pkgs.cudatoolkit} - # export LD_LIBRARY_PATH=${pkgs.linuxPackages.nvidia_x11}/lib:${pkgs.ncurses5}/lib - export EXTRA_LDFLAGS="-L/lib -L${pkgs.linuxPackages.nvidia_x11}/lib" - export EXTRA_CCFLAGS="-I/usr/include" - ''; -} diff --git a/shell/system76-docs/.gitkeep b/shell/system76-docs/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/shell/system76-docs/shell.nix b/shell/system76-docs/shell.nix deleted file mode 100644 index 80ae480..0000000 --- a/shell/system76-docs/shell.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ pkgs ? import {} }: - pkgs.mkShell { - nativeBuildInputs = with pkgs; [ - nodejs-18_x - nodePackages.npm - ]; - shellHook = - '' - cd /home/aaronh/Projects/system76/docs - npm ci - npm start - ''; -}