added bluetooth support

This commit is contained in:
Steven 2023-10-16 01:34:40 -04:00
parent 52992924a7
commit 3449e5a858
3 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{config, pkgs, }:
{
hardware.bluetooth = {
enable = true; # enables support for Bluetooth
powerOnBoot = true; # powers up the default Bluetooth controller on boot
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
services.blueman.enable = true;
}