Nix-Hyprland/nixos/modules/bluetooth.nix

15 lines
237 B
Nix
Raw Normal View History

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