ark/shells/default.nix
2022-04-09 22:11:45 +03:00

10 lines
215 B
Nix

{lib, ...}:
lib.genPkgs (pkgs: {
default = with pkgs;
mkShell {
name = "prts";
buildInputs = [git git-crypt];
shellHook = "echo \"$(tput bold)welcome to PRTS, $USER$(tput sgr0)\"";
};
})