1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/programs/gh.nix

145 lines
3.6 KiB
Nix
Raw Normal View History

2020-10-15 22:25:47 +02:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.gh;
2021-10-08 23:29:25 +02:00
yamlFormat = pkgs.formats.yaml { };
settingsType = types.submodule {
freeformType = yamlFormat.type;
# These options are only here for the mkRenamedOptionModule support
options = {
aliases = mkOption {
type = with types; attrsOf str;
default = { };
example = literalExpression ''
2021-10-08 23:29:25 +02:00
{
co = "pr checkout";
pv = "pr view";
}
'';
description = ''
2021-10-08 23:29:25 +02:00
Aliases that allow you to create nicknames for gh commands.
'';
};
editor = mkOption {
type = types.str;
default = "";
description = ''
2021-10-08 23:29:25 +02:00
The editor that gh should run when creating issues, pull requests, etc.
If blank, will refer to environment.
'';
};
git_protocol = mkOption {
type = types.str;
default = "https";
example = "ssh";
description = ''
2021-10-08 23:29:25 +02:00
The protocol to use when performing Git operations.
'';
};
};
};
2020-10-15 22:25:47 +02:00
in {
2021-10-08 23:29:25 +02:00
meta.maintainers = [ maintainers.gerschtli maintainers.berbiche ];
imports = (map (x:
mkRenamedOptionModule [ "programs" "gh" x ] [
"programs"
"gh"
"settings"
x
]) [ "aliases" "editor" ]) ++ [
(mkRenamedOptionModule [ "programs" "gh" "gitProtocol" ] [
"programs"
"gh"
"settings"
"git_protocol"
])
(mkRenamedOptionModule [ "programs" "gh" "enableGitCredentialHelper" ] [
"programs"
"gh"
"gitCredentialHelper"
"enable"
])
2021-10-08 23:29:25 +02:00
];
2020-10-15 22:25:47 +02:00
options.programs.gh = {
enable = mkEnableOption "GitHub CLI tool";
2020-10-15 22:25:47 +02:00
2021-10-08 23:29:25 +02:00
package = mkOption {
type = types.package;
default = pkgs.gh;
defaultText = literalExpression "pkgs.gh";
description = "Package providing {command}`gh`.";
2021-10-08 23:29:25 +02:00
};
settings = mkOption {
type = settingsType;
2020-10-15 22:25:47 +02:00
default = { };
description =
"Configuration written to {file}`$XDG_CONFIG_HOME/gh/config.yml`.";
example = literalExpression ''
2020-10-15 22:25:47 +02:00
{
2021-10-08 23:29:25 +02:00
git_protocol = "ssh";
2020-10-15 22:25:47 +02:00
2021-10-08 23:29:25 +02:00
prompt = "enabled";
2020-10-15 22:25:47 +02:00
2021-10-08 23:29:25 +02:00
aliases = {
co = "pr checkout";
pv = "pr view";
};
};
2020-10-15 22:25:47 +02:00
'';
};
gitCredentialHelper = {
enable = mkEnableOption "the gh git credential helper" // {
default = true;
};
2022-07-27 22:39:03 +02:00
hosts = mkOption {
type = types.listOf types.str;
default = [ "https://github.com" ];
description = "GitHub hosts to enable the gh git credential helper for";
example = literalExpression ''
[ "https://github.com" "https://github.example.com" ]
'';
};
};
2022-07-27 22:39:03 +02:00
extensions = mkOption {
type = types.listOf types.package;
default = [ ];
description = ''
gh extensions, see <https://cli.github.com/manual/gh_extension>.
2022-07-27 22:39:03 +02:00
'';
example = literalExpression "[ pkgs.gh-eco ]";
};
2020-10-15 22:25:47 +02:00
};
config = mkIf cfg.enable {
2021-10-08 23:29:25 +02:00
home.packages = [ cfg.package ];
2020-10-15 22:25:47 +02:00
2021-10-08 23:29:25 +02:00
xdg.configFile."gh/config.yml".source =
yamlFormat.generate "gh-config.yml" cfg.settings;
programs.git.extraConfig.credential = mkIf cfg.gitCredentialHelper.enable
(builtins.listToAttrs (map (host:
lib.nameValuePair host {
helper = "${cfg.package}/bin/gh auth git-credential";
}) cfg.gitCredentialHelper.hosts));
2022-07-27 22:39:03 +02:00
xdg.dataFile."gh/extensions" = mkIf (cfg.extensions != [ ]) {
source = pkgs.linkFarm "gh-extensions" (builtins.map (p: {
name = p.pname;
path = "${p}/bin";
}) cfg.extensions);
};
2020-10-15 22:25:47 +02:00
};
}