nix/modules/system/hardware/bluetooth.nix

16 lines
224 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";
};
};
};
services.blueman.enable = true;
}