nixos-config/modules/host/bluetooth.nix
2025-02-13 23:53:19 +03:00

15 lines
284 B
Nix

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