{ pkgs, lib, config, ... }: let cfg = config._archetypes.collections.bluetooth; in { options._archetypes.collections.bluetooth = { enable = lib.mkEnableOption "enables bluetooth and blueman"; }; config = lib.mkIf cfg.enable { hardware.bluetooth.enable = true; services.blueman.enable = config._archetypes.collections.desktop.utilities.enable; # FIXME }; }