summaryrefslogtreecommitdiffstats
path: root/modules/nixos/sils/bluetooth.nix
blob: 2d677176c35d775206f815d6a6444df8ca9a8d25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  config,
  lib,
  ...
}: let
  cfg = config.sils.bluetooth;
in {
  options.sils.bluetooth.enable = lib.mkEnableOption "bluetooth";
  config = lib.mkIf cfg.enable {
    hardware.bluetooth.enable = true;
  };
}