nix-config/modules/hardware/bluetooth.nix
2025-02-25 15:56:58 +01:00

21 lines
326 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf mkOption types;
cfg = config.horseman.hardware.bluetooth;
in {
options = {
horseman.hardware.bluetooth = {
enable = mkEnableOption "Bluetooth";
};
};
config = {
hardware.bluetooth.enable = true;
};
}