mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-21 23:54:22 +01:00
Fix bluetooth not working on omen properly
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
b0eaa7929d
commit
a96f79171a
|
@ -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" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue