nix/modules/system/desktop/bluetooth.nix

17 lines
261 B
Nix
Raw Normal View History

2024-03-14 22:46:49 +01:00
{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
hardware.pulseaudio.enable = true;
services.blueman.enable = true;
}