From 682e7bc34d5d2f6faa2a199f770779da6089944d Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Thu, 12 Dec 2019 15:37:07 +0100 Subject: [PATCH] switch to new bluetooth config --- common/base-hardware.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/common/base-hardware.nix b/common/base-hardware.nix index bee29ba..4283273 100644 --- a/common/base-hardware.nix +++ b/common/base-hardware.nix @@ -15,10 +15,11 @@ # Bluetooth hardware.bluetooth.enable = true; - hardware.bluetooth.extraConfig = " - [General] - Enable=Source,Sink,Media,Socket - "; + hardware.bluetooth.config = { + General = { + Enable = "Source,Sink,Media,Socket"; + }; + }; # Sound. sound.enable = true;