nixos-config/hardware/bluetooth.nix

16 lines
182 B
Nix
Raw Normal View History

2024-05-26 16:45:38 +02:00
{
config,
lib,
pkgs,
...
}:
{
hardware.bluetooth.enable = true;
hardware.bluetooth.settings = {
2024-05-26 16:45:38 +02:00
General = {
Enable = "Source,Sink,Media,Socket";
};
};
}