2023-07-05 19:56:25 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.gh-dash;
|
|
|
|
|
|
|
|
yamlFormat = pkgs.formats.yaml { };
|
|
|
|
|
|
|
|
in {
|
2024-07-05 01:18:45 +02:00
|
|
|
meta.maintainers = [ lib.hm.maintainers.janik ];
|
2023-07-05 19:56:25 +02:00
|
|
|
|
|
|
|
options.programs.gh-dash = {
|
|
|
|
enable = lib.mkEnableOption "GitHub CLI dashboard plugin";
|
|
|
|
|
|
|
|
package = lib.mkPackageOption pkgs "gh-dash" { };
|
|
|
|
|
|
|
|
settings = lib.mkOption {
|
|
|
|
type = yamlFormat.type;
|
|
|
|
default = { };
|
|
|
|
example = lib.literalExpression ''
|
|
|
|
{
|
|
|
|
prSections = [{
|
|
|
|
title = "My Pull Requests";
|
|
|
|
filters = "is:open author:@me";
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Configuration written to {file}`$XDG_CONFIG_HOME/gh-dash/config.yml`.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
programs.gh.extensions = [ cfg.package ];
|
|
|
|
|
|
|
|
xdg.configFile."gh-dash/config.yml".source =
|
|
|
|
yamlFormat.generate "gh-dash-config.yml" cfg.settings;
|
|
|
|
};
|
|
|
|
}
|