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