{ lib, pkgs, config, ... }: let cfg = config.this.bluetooth; in { options.this.bluetooth = { enable = lib.mkEnableOption "bluetooth"; }; config = lib.mkIf cfg.enable { hardware.bluetooth.enable = true; environment.systemPackages = with pkgs; [ bluetuith ]; }; }