{ config, lib, pkgs, ... }: { options = { bluetooth = { enable = lib.mkEnableOption "enable bluetooth"; }; }; config = lib.mkIf config.bluetooth.enable { home.packages = with pkgs; [ bluez bluetuith ]; }; }