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

26 lines
366 B
Nix
Raw Normal View History

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