configuration.nix/home/desktop/programs/github-cli.nix

8 lines
131 B
Nix
Raw Normal View History

2023-04-07 19:09:05 +05:30
{ pkgs, ... }: {
programs.gh = {
enable = true;
settings.git_protocol = "ssh";
extensions = [ pkgs.gh-dash ];
};
}