{ options, config, lib, pkgs, ... }: with lib; let cfg = config.aa.hardware.bluetooth; in { options.aa.hardware.bluetooth = with types; { enable = mkEnableOption "bluetooth"; }; config = mkIf cfg.enable { hardware.bluetooth.enable = true; services.blueman.enable = true; }; }