marleyos/modules/home/programs/gh.nix
2025-05-26 19:58:07 -07:00

20 lines
323 B
Nix

{
config,
lib,
...
}: let
cfg = config.marleyos.programs.gh;
in {
options.marleyos.programs.gh.enable = lib.mkEnableOption "gh";
config = lib.mkIf cfg.enable {
programs.gh = {
enable = true;
gitCredentialHelper.enable = true;
};
programs.gh-dash = {
enable = true;
};
};
}