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

8 lines
127 B
Nix
Raw Normal View History

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