29027fd1e1
Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
43 lines
777 B
Nix
43 lines
777 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
hardware.bluetooth.enable = mkOption {
|
|
type = types.bool;
|
|
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 ];
|
|
|
|
systemd.services."dbus-org.bluez" = {
|
|
description = "Bluetooth Service";
|
|
serviceConfig = {
|
|
Type = "dbus";
|
|
BusName = "org.bluez";
|
|
ExecStart = "${pkgs.bluez}/sbin/bluetoothd -n";
|
|
};
|
|
wantedBy = [ "bluetooth.target" ];
|
|
};
|
|
|
|
};
|
|
|
|
}
|