Remove gem stuff from shell.nix

This commit is contained in:
Stefan 2024-11-04 00:45:35 +00:00
parent 49ca27d57f
commit 669058075e

View file

@ -8,14 +8,4 @@ with (import <nixpkgs> {});
nodePackages_latest.npm
sass
];
shellHook = ''
mkdir -p .nix-gems
export GEM_HOME=$PWD/.nix-gems
export GEM_PATH=$GEM_HOME
export PATH=$GEM_HOME/bin:$PATH
export PATH=$PWD/bin:$PATH
gem list -i ^neocities$ || gem install neocities --no-document
'';
}