{ config, lib, ... }: with lib; let cfg = config.local.hardware.bluetooth; in { options.local.hardware.bluetooth = { enable = mkEnableOption "bluetooth services"; }; config = mkIf cfg.enable { hardware.bluetooth = { enable = true; powerOnBoot = mkDefault false; }; }; }