1 2 3 4 5 6 7 8 9 10
{ config, lib, ... }: { options.gh.enable = lib.mkEnableOption "Setup gh"; config = lib.mkIf config.gh.enable { programs.gh = { enable = true; }; }; }