Files
nixos-config/modules/host/bluetooth.nix
T
2025-07-18 16:40:42 +03:00

15 lines
284 B
Nix
Executable File

{ 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;
}