put shellHook in mkShell call

This commit is contained in:
Rowan Torbitzky-Lane 2025-02-25 13:40:38 -06:00
parent c9d26d832a
commit 406b867dfe

View File

@ -10,9 +10,7 @@
{ {
devShells."${system}" = devShells."${system}" =
let let
pkgs = import nixpkgs { pkgs = nixpkgs.legacyPackages."${system}";
inherit system;
};
in in
pkgs.mkShellNoCC { pkgs.mkShellNoCC {
packages = with pkgs; [ packages = with pkgs; [
@ -31,10 +29,10 @@
]; ];
}) })
]; ];
};
shellHook = '' shellHook = ''
echo "starting codium" echo "starting codium"
codium . codium .
''; '';
}; };
};
} }