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

7 lines
127 B
Nix

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