{ config, lib, ... }: { options.homeconfig.hyprpanel.enable = lib.mkOption { type = with types; bool; default = false; }; config = lib.mkIf config.homeconfig.hyprpanel.enable { programs.hyprpanel = { enable = true; }; }; }