Nix-Hyprland/nixos/modules/bluetooth.nix
Andrey0189 66e778ecd1 bluez
2024-04-17 08:51:23 +05:00

15 lines
237 B
Nix

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