ark/shells/default.nix

10 lines
233 B
Nix
Raw Normal View History

2022-04-10 05:48:34 +03:00
{tlib, ...}:
tlib.genPkgs (pkgs: {
2022-04-09 21:33:13 +03:00
default = with pkgs;
mkShell {
name = "prts";
2022-04-10 05:48:34 +03:00
buildInputs = [git git-crypt alejandra helix];
2022-04-09 22:11:45 +03:00
shellHook = "echo \"$(tput bold)welcome to PRTS, $USER$(tput sgr0)\"";
2022-04-09 21:33:13 +03:00
};
})