nix-dotfiles/home/programs/gh.nix

14 lines
185 B
Nix
Raw Normal View History

2022-03-07 16:01:52 +01:00
{ ... }:
{
programs.gh = {
enable = true;
settings = {
gitProtocol = "ssh";
aliases = {
co = "pr checkout";
pv = "pr view";
};
};
};
}