nix/home/programs/gh.nix
2022-02-27 15:57:58 -05:00

12 lines
250 B
Nix

{pkgs, ...}: {
programs.gh = {
enable = true;
enableGitCredentialHelper = true;
settings = {
editor = "${pkgs.neovim}/bin/nvim";
git_protocol = "https";
browser = "waterfox-g4";
prompt = "enabled";
};
};
}