From 34c6bfbb14a32e17dd31322034ddbf12f0fdd796 Mon Sep 17 00:00:00 2001 From: Paul-Henri Froidmont Date: Thu, 25 Feb 2021 00:40:08 +0100 Subject: [PATCH] Update Work laptop bluetooth config to new syntax --- hosts/work-laptop/configuration.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/hosts/work-laptop/configuration.nix b/hosts/work-laptop/configuration.nix index b185ee6..6f3a88c 100644 --- a/hosts/work-laptop/configuration.nix +++ b/hosts/work-laptop/configuration.nix @@ -39,10 +39,11 @@ hardware.bluetooth = { enable = true; # Enable A2DP Sink - extraConfig = " - [General] - Enable=Source,Sink,Media,Socket - "; + settings = { + General = { + Enable = "Source,Sink,Media,Socket"; + }; + }; }; hardware.pulseaudio = { enable = true;