bonfire/modules/hardware/bluetooth.nix

15 lines
285 B
Nix
Raw Normal View History

2023-06-06 23:18:09 +05:00
{ options, config, lib, pkgs, ... }:
with lib;
with lib.custom;
let
cfg = config.modules.hardware.bluetooth;
in {
options.modules.hardware.bluetooth = {
enable = mkBoolOpt false;
};
config = mkIf cfg.enable {
hardware.bluetooth.enable = true;
};
}