Enable bluetooth.

This commit is contained in:
jay
2025-06-29 07:31:04 -04:00
parent 354df5a64c
commit 7cf8cbbedb
2 changed files with 6 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
./services/desktopmanager.nix
./services/displaymanager.nix
./services/sound.nix
./system/bluetooth.nix
];
nixpkgs = {

View File

@@ -0,0 +1,5 @@
{ ... }: {
hardware.bluetooth.enable = true; # enables support for Bluetooth
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
}