15 lines
285 B
Nix
15 lines
285 B
Nix
{ 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;
|
|
};
|
|
}
|