From 21bbab0f1b974018e7a5060e23620630843d35d3 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Tue, 15 Jul 2025 15:52:19 +0200 Subject: [PATCH] feat(desktop): better bluetooth settings. --- modules/linux/nixos/bluetooth.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/linux/nixos/bluetooth.nix b/modules/linux/nixos/bluetooth.nix index 30dd41e..66ff292 100644 --- a/modules/linux/nixos/bluetooth.nix +++ b/modules/linux/nixos/bluetooth.nix @@ -11,5 +11,14 @@ config = lib.mkIf config.crony.bluetooth.enable { hardware.bluetooth.enable = true; hardware.bluetooth.powerOnBoot = true; + + hardware.bluetooth.settings = { + General = { + Enable = "Source,Sink,Media,Socket"; + Experimental = true; + }; + }; + + services.blueman.enable = true; }; }