ark/shells/default.nix

10 lines
215 B
Nix
Raw Normal View History

2022-04-09 21:33:13 +03:00
{lib, ...}:
lib.genPkgs (pkgs: {
default = with pkgs;
mkShell {
name = "prts";
buildInputs = [git git-crypt];
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
};
})