ark/shells/default.nix

10 lines
187 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];
shellHook = "echo welcome to PRTS, $USER";
};
})