mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-19 05:39:34 +01:00
8 lines
219 B
Nix
8 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;
|
|
}
|