{ config, lib, ... }: let cfg = config.my.desktop.plasma; in { options.my.desktop.plasma = { enable = lib.mkEnableOption "Enable KDE Plasma Desktop Environment"; }; config = lib.mkIf cfg.enable { hardware.bluetooth = { enable = true; powerOnBoot = true; }; }; }