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}";
in
pkgs.mkShellNoCC {
buildInputs = [ pkgs.bashInteractive ];
packages = with pkgs; [
clojure
clojure-lsp
@ -30,6 +31,7 @@
})
];
shellHook = ''
export SHELL=${pkgs.lib.getExe pkgs.bashInteractive}
echo "starting codium"
codium .
'';