Fix bluetooth not working on omen properly

Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
Magic_RB 2023-06-28 14:22:11 +02:00
parent b0eaa7929d
commit a96f79171a
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E

View file

@ -1,4 +1,8 @@
{ pkgs, lib, inputs', secret, ... }:
let
inherit (lib)
concatStringsSep;
in
{
networking = {
hostName = "omen";
@ -15,5 +19,10 @@
};
networking.networkmanager.enable = true;
hardware.bluetooth.enable = true;
hardware.bluetooth = {
enable = true;
settings = {
General.Enable = concatStringsSep "," [ "Control" "Gateway" "Headset" "Media" "Sink" "Socket" "Source" ];
};
};
}