2020-10-15 22:25:47 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.gh;
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.gerschtli ];
|
|
|
|
|
|
|
|
options.programs.gh = {
|
|
|
|
enable = mkEnableOption "GitHub CLI tool";
|
|
|
|
|
|
|
|
aliases = mkOption {
|
|
|
|
type = with types; attrsOf str;
|
|
|
|
default = { };
|
|
|
|
example = literalExample ''
|
|
|
|
{
|
|
|
|
co = "pr checkout";
|
|
|
|
pv = "pr view";
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Aliases that allow you to create nicknames for gh commands.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
editor = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
The editor that gh should run when creating issues, pull requests, etc.
|
|
|
|
If blank, will refer to environment.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
gitProtocol = mkOption {
|
|
|
|
type = types.enum [ "https" "ssh" ];
|
|
|
|
default = "https";
|
|
|
|
description = ''
|
|
|
|
The protocol to use when performing Git operations.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-01-20 18:59:58 +01:00
|
|
|
home.packages = [ pkgs.gh ];
|
2020-10-15 22:25:47 +02:00
|
|
|
|
2021-02-27 21:42:56 +01:00
|
|
|
xdg.configFile."gh/config.yml".text = builtins.toJSON {
|
|
|
|
inherit (cfg) aliases editor;
|
|
|
|
git_protocol = cfg.gitProtocol;
|
|
|
|
};
|
2020-10-15 22:25:47 +02:00
|
|
|
};
|
|
|
|
}
|