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

8 lines
131 B
Nix
Raw Normal View History

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