mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-22 18:29:39 +01:00
gh-dash: add module
This commit is contained in:
parent
ab70a02363
commit
a30f5b5b35
6 changed files with 78 additions and 0 deletions
42
modules/programs/gh-dash.nix
Normal file
42
modules/programs/gh-dash.nix
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue