summary refs log tree commit diff
path: root/modules/services/hardware/bluetooth.nix
blob: 06ed9ef70a4a09912fd4001f4580b782ae70b84b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ config, pkgs, ... }:

with pkgs.lib;

{

  ###### interface

  options = {

    hardware.bluetooth.enable = mkOption {
      default = false;
      description = "Whether to enable support for Bluetooth.";
    };

  };


  ###### implementation

  config = mkIf config.hardware.bluetooth.enable {

    environment.systemPackages = [ pkgs.bluez pkgs.openobex pkgs.obexftp ];

    services.udev.packages = [ pkgs.bluez ];

    services.dbus.packages = [ pkgs.bluez ];

  };

}