flocon/modules/core/hardware/bluetooth.nix

14 lines
316 B
Nix
Raw Permalink Normal View History

2025-02-14 18:55:50 +01:00
{
lib,
config,
...
}: let
inherit (lib.modules) mkIf;
inherit (config.local.profiles) desktop;
in {
config = mkIf desktop.enable {
hardware.bluetooth.enable = true; # enables support for Bluetooth
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
};
}