nix-config/modules/bluetooth/default.nix
2024-06-14 00:41:16 +02:00

14 lines
290 B
Nix

{ lib, config, ... }: lib.mkIf(config.withBluetooth) {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
};
services.blueman.enable = true;
}