10 lines
187 B
Nix
10 lines
187 B
Nix
|
{lib, ...}:
|
||
|
lib.genPkgs (pkgs: {
|
||
|
default = with pkgs;
|
||
|
mkShell {
|
||
|
name = "prts";
|
||
|
buildInputs = [git git-crypt];
|
||
|
shellHook = "echo welcome to PRTS, $USER";
|
||
|
};
|
||
|
})
|