Compare commits

..

No commits in common. "b7939f0bfb09d46c28a1c0b3398fef078018e400" and "9c671afc4adc42e32feb1c4585089ec1cee3d268" have entirely different histories.

View File

@ -13,7 +13,6 @@
pkgs = nixpkgs.legacyPackages."${system}"; pkgs = nixpkgs.legacyPackages."${system}";
in in
pkgs.mkShellNoCC { pkgs.mkShellNoCC {
buildInputs = [ pkgs.bashInteractive ];
packages = with pkgs; [ packages = with pkgs; [
clojure clojure
clojure-lsp clojure-lsp
@ -31,7 +30,6 @@
}) })
]; ];
shellHook = '' shellHook = ''
export SHELL=${pkgs.lib.getExe pkgs.bashInteractive}
echo "starting codium" echo "starting codium"
codium . codium .
''; '';