flake/modules/nixos/hardware/bluetooth.nix
osbm 3337820bd7 Revert "mb"
This reverts commit 8c5a06346f.
2025-10-23 21:59:36 +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;
};
}