bluetooth

This commit is contained in:
Miguel Palhas
2024-10-06 16:51:29 +01:00
parent 08fb398ce2
commit 907321cc59
7 changed files with 40 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
}