Files
home-manager/modules/programs/gh-dash.nix
Austin Horstman 355734d876 treewide: remove literalExpression where unneeded
`literalExpression` is intended just to signify code that needs to stay
a string that gets represented exactly as-is for docs. It has been
misused heavily and people get confused repeatedly on when or not to use
it because of the rampant misuse.
2026-05-17 21:43:25 -05:00

48 lines
1007 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.gh-dash;
yamlFormat = pkgs.formats.yaml { };
in
{
meta.maintainers = [ lib.hm.maintainers.janik ];
options.programs.gh-dash = {
enable = lib.mkEnableOption "GitHub CLI dashboard plugin";
package = lib.mkPackageOption pkgs "gh-dash" { nullable = true; };
settings = lib.mkOption {
inherit (yamlFormat) type;
default = { };
example = {
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 = lib.mkIf (cfg.package != null) [ cfg.package ];
programs.gh.extensions = lib.mkIf (cfg.package != null) [ cfg.package ];
xdg.configFile."gh-dash/config.yml".source = yamlFormat.generate "gh-dash-config.yml" cfg.settings;
};
}