nix/home/programs/gh.nix
2022-02-03 06:46:44 -05:00

15 lines
253 B
Nix

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