nix-conf/modules/bluetooth/default.nix
2023-12-29 16:43:40 +01:00

15 lines
285 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.jopejoe1.bluetooth;
in
{
options.jopejoe1.bluetooth = {
enable = lib.mkEnableOption "Enable Bluetooth";
};
config = lib.mkIf cfg.enable {
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
};
}