Add gpr GitHub PR helper and include in git nix module

This commit is contained in:
Joshua Bell 2026-01-27 17:22:36 -06:00
parent ec2e093a24
commit 8b54a94c54
5 changed files with 465 additions and 19 deletions

View file

@ -7,6 +7,7 @@ with lib;
{
environment.systemPackages = with pkgs; [
git
gh
];
environment.shellAliases = {
@ -32,5 +33,6 @@ with lib;
(builtins.readFile ./link_ignored.func.sh)
(builtins.readFile ./branching_setup.func.sh)
(builtins.readFile ./gcpropose.func.sh)
(builtins.readFile ./gpr.func.sh)
];
}