flake/modules/nixos/hardware/bluetooth.nix
2025-10-23 21:30:19 +03:00

7 lines
No EOL
166 B
Nix

{ config, lib, ... }:
{
config = lib.mkIf config.hardware.bluetooth.enable {
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
};
}