diff --git a/hosts/laptop/modules/bluetooth.nix b/hosts/laptop/modules/bluetooth.nix index 1c756c4..9ec2063 100644 --- a/hosts/laptop/modules/bluetooth.nix +++ b/hosts/laptop/modules/bluetooth.nix @@ -1,6 +1,14 @@ { ... }: { # Enable bluetooth - hardware.bluetooth.enable = true; - hardware.bluetooth.powerOnBoot = true; + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + + settings = { + General = { + Enable = "Source,Sink,Media,Socket"; + }; + }; + }; } \ No newline at end of file