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