nix-config/modules/unix/bluetooth.nix
2025-12-06 16:56:26 +01:00

14 lines
230 B
Nix

{ config, ... }:
{
services.blueman.enable = true;
hardware.bluetooth = {
enable = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
};
}