nixos-config/nixos/modules/bluetooth.nix

15 lines
237 B
Nix
Raw Normal View History

2024-04-17 08:15:16 +05:00
{
hardware.bluetooth = {
enable = true;
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
}