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

7 lines
No EOL
178 B
Nix

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