marleyos/modules/home/programs/gh/default.nix

21 lines
323 B
Nix
Raw Normal View History

2024-11-16 15:27:19 -08:00
{
lib,
config,
...
}: let
cfg = config.marleyos.programs.gh;
in {
options.marleyos.programs.gh.enable = lib.mkEnableOption "gh";
2024-11-16 15:27:19 -08:00
config = lib.mkIf cfg.enable {
2024-11-16 15:27:19 -08:00
programs.gh = {
enable = true;
gitCredentialHelper.enable = true;
};
programs.gh-dash = {
enable = true;
};
};
}