Compare commits

...

2 Commits

Author SHA1 Message Date
b7939f0bfb try exporting shell
Some checks failed
CI / test-clj (push) Has been cancelled
CI / test-cljs (push) Has been cancelled
2025-03-07 13:51:03 -06:00
4c38979e20 try build inputs 2025-03-07 13:47:49 -06:00

View File

@ -13,6 +13,7 @@
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
@ -30,6 +31,7 @@
}) })
]; ];
shellHook = '' shellHook = ''
export SHELL=${pkgs.lib.getExe pkgs.bashInteractive}
echo "starting codium" echo "starting codium"
codium . codium .
''; '';