nixos-config/modules/host/bluetooth.nix

15 lines
284 B
Nix
Raw Permalink Normal View History

{ config, lib, ... }: {
hardware.bluetooth =
lib.mkIf config.hardware.bluetooth.enable {
2024-04-17 08:15:16 +05:00
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
};
2024-04-17 08:51:23 +05:00
services.blueman.enable = true;
2024-04-17 08:15:16 +05:00
}