This commit is contained in:
Dennis Schoepf 2026-03-04 00:59:07 +01:00
parent 606490e975
commit 86a1d07eb8

View file

@ -1,18 +1,17 @@
{ inputs, ... }: { inputs, ... }:
{ {
flake.modules.nixos.bluetooth = flake.modules.nixos.bluetooth =
{ pkgs, ... }: { pkgs, ... }:
{ {
hardware.bluetooth = { hardware.bluetooth = {
enable = true; enable = true;
powerOnBoot = true; powerOnBoot = true;
settings = { settings = {
General = { General = {
Enable = "Source,Sink,Media,Socket"; Enable = "Source,Sink,Media,Socket";
Experimental = true; Experimental = true;
}; };
}; };
}; };
services.blueman.enable = true; };
};
} }