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

7 lines
131 B
Nix

{ pkgs, ... }: {
programs.gh = {
enable = true;
settings.git_protocol = "ssh";
extensions = [ pkgs.gh-dash ];
};
}