nix-config/bak/modules/unix/bluetooth.nix
2026-03-03 10:46:08 +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;
};
};
};
}