dotfiles/nixpkgs/programs/gh.nix

14 lines
185 B
Nix
Raw Normal View History

2021-12-08 16:26:56 +01:00
{ ... }:
{
programs.gh = {
enable = true;
2021-12-11 15:29:12 +01:00
settings = {
gitProtocol = "ssh";
aliases = {
co = "pr checkout";
pv = "pr view";
};
2021-12-08 16:26:56 +01:00
};
};
}