1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-25 07:58:31 +02:00
home-manager/modules/programs/gh-dash.nix
2023-07-24 12:38:44 +02:00

43 lines
946 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.programs.gh-dash;
yamlFormat = pkgs.formats.yaml { };
in {
meta.maintainers = [ lib.maintainers.janik ];
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;
};
}