mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 14:40:19 +02:00
7 lines
219 B
Nix
7 lines
219 B
Nix
{config, pkgs, ...}: {
|
|
hardware.bluetooth = {
|
|
enable = true; # enables support for Bluetooth
|
|
powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
|
};
|
|
services.blueman.enable = true;
|
|
}
|