ark/shells/default.nix
2023-05-05 01:54:16 +03:00

10 lines
240 B
Nix

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