2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2016-01-29 22:08:42 +00:00
|
|
|
let
|
2017-02-17 18:44:04 +00:00
|
|
|
cfg = config.hardware.bluetooth;
|
2021-02-09 09:27:12 +00:00
|
|
|
package = cfg.package;
|
|
|
|
|
|
|
|
inherit (lib)
|
|
|
|
mkDefault mkEnableOption mkIf mkOption
|
|
|
|
mkRenamedOptionModule mkRemovedOptionModule
|
2021-10-03 16:06:03 +00:00
|
|
|
concatStringsSep escapeShellArgs literalExpression
|
2021-02-09 09:27:12 +00:00
|
|
|
optional optionals optionalAttrs recursiveUpdate types;
|
|
|
|
|
|
|
|
cfgFmt = pkgs.formats.ini { };
|
|
|
|
|
|
|
|
defaults = {
|
|
|
|
General.ControllerMode = "dual";
|
|
|
|
Policy.AutoEnable = cfg.powerOnBoot;
|
|
|
|
};
|
|
|
|
|
|
|
|
hasDisabledPlugins = builtins.length cfg.disabledPlugins > 0;
|
2017-02-17 18:44:04 +00:00
|
|
|
|
2021-02-09 09:27:12 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
(mkRenamedOptionModule [ "hardware" "bluetooth" "config" ] [ "hardware" "bluetooth" "settings" ])
|
|
|
|
(mkRemovedOptionModule [ "hardware" "bluetooth" "extraConfig" ] ''
|
|
|
|
Use hardware.bluetooth.settings instead.
|
|
|
|
|
|
|
|
This is part of the general move to use structured settings instead of raw
|
|
|
|
text for config as introduced by RFC0042:
|
|
|
|
https://github.com/NixOS/rfcs/blob/master/rfcs/0042-config-option.md
|
|
|
|
'')
|
|
|
|
];
|
2009-08-10 18:25:09 +00:00
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2010-08-27 15:32:49 +00:00
|
|
|
|
2017-03-20 13:28:02 +00:00
|
|
|
hardware.bluetooth = {
|
2022-08-28 19:18:44 +00:00
|
|
|
enable = mkEnableOption (lib.mdDoc "support for Bluetooth");
|
2017-02-17 18:44:04 +00:00
|
|
|
|
2022-08-28 19:18:44 +00:00
|
|
|
hsphfpd.enable = mkEnableOption (lib.mdDoc "support for hsphfpd[-prototype] implementation");
|
2020-10-25 01:12:05 +00:00
|
|
|
|
2017-03-20 13:28:02 +00:00
|
|
|
powerOnBoot = mkOption {
|
2021-02-09 09:27:12 +00:00
|
|
|
type = types.bool;
|
2017-03-20 13:28:02 +00:00
|
|
|
default = true;
|
2022-07-28 21:19:15 +00:00
|
|
|
description = lib.mdDoc "Whether to power up the default Bluetooth controller on boot.";
|
2017-03-20 13:28:02 +00:00
|
|
|
};
|
|
|
|
|
2018-03-07 04:12:22 +00:00
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.bluez;
|
2021-10-03 16:06:03 +00:00
|
|
|
defaultText = literalExpression "pkgs.bluez";
|
2022-08-30 00:30:04 +00:00
|
|
|
description = lib.mdDoc ''
|
2018-03-07 04:12:22 +00:00
|
|
|
Which BlueZ package to use.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-02-09 09:27:12 +00:00
|
|
|
disabledPlugins = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ ];
|
2022-07-28 21:19:15 +00:00
|
|
|
description = lib.mdDoc "Built-in plugins to disable";
|
2021-02-09 09:27:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = cfgFmt.type;
|
|
|
|
default = { };
|
2019-11-21 16:35:45 +00:00
|
|
|
example = {
|
|
|
|
General = {
|
|
|
|
ControllerMode = "bredr";
|
|
|
|
};
|
|
|
|
};
|
2022-07-28 21:19:15 +00:00
|
|
|
description = lib.mdDoc "Set configuration for system-wide bluetooth (/etc/bluetooth/main.conf).";
|
2019-11-21 16:35:45 +00:00
|
|
|
};
|
2022-12-05 16:11:52 +00:00
|
|
|
|
|
|
|
input = mkOption {
|
|
|
|
type = cfgFmt.type;
|
|
|
|
default = { };
|
|
|
|
example = {
|
|
|
|
General = {
|
|
|
|
IdleTimeout = 30;
|
|
|
|
ClassicBondedOnly = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
description = lib.mdDoc "Set configuration for the input service (/etc/bluetooth/input.conf).";
|
|
|
|
};
|
|
|
|
|
|
|
|
network = mkOption {
|
|
|
|
type = cfgFmt.type;
|
|
|
|
default = { };
|
|
|
|
example = {
|
|
|
|
General = {
|
|
|
|
DisableSecurity = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
description = lib.mdDoc "Set configuration for the network service (/etc/bluetooth/network.conf).";
|
|
|
|
};
|
2010-08-27 15:32:49 +00:00
|
|
|
};
|
2009-08-10 18:25:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
###### implementation
|
2017-02-10 02:25:03 +00:00
|
|
|
|
2017-02-17 18:44:04 +00:00
|
|
|
config = mkIf cfg.enable {
|
2021-02-09 09:27:12 +00:00
|
|
|
environment.systemPackages = [ package ]
|
|
|
|
++ optional cfg.hsphfpd.enable pkgs.hsphfpd;
|
2019-11-21 16:35:45 +00:00
|
|
|
|
2022-12-05 16:11:52 +00:00
|
|
|
environment.etc."bluetooth/input.conf".source =
|
|
|
|
cfgFmt.generate "input.conf" cfg.input;
|
|
|
|
environment.etc."bluetooth/network.conf".source =
|
|
|
|
cfgFmt.generate "network.conf" cfg.network;
|
2021-02-09 09:27:12 +00:00
|
|
|
environment.etc."bluetooth/main.conf".source =
|
|
|
|
cfgFmt.generate "main.conf" (recursiveUpdate defaults cfg.settings);
|
|
|
|
services.udev.packages = [ package ];
|
|
|
|
services.dbus.packages = [ package ]
|
|
|
|
++ optional cfg.hsphfpd.enable pkgs.hsphfpd;
|
|
|
|
systemd.packages = [ package ];
|
2017-02-17 18:44:04 +00:00
|
|
|
|
|
|
|
systemd.services = {
|
2021-02-09 09:27:12 +00:00
|
|
|
bluetooth =
|
|
|
|
let
|
|
|
|
# `man bluetoothd` will refer to main.conf in the nix store but bluez
|
|
|
|
# will in fact load the configuration file at /etc/bluetooth/main.conf
|
|
|
|
# so force it here to avoid any ambiguity and things suddenly breaking
|
|
|
|
# if/when the bluez derivation is changed.
|
nixos/bluetooth: fix more stupidity on my part
Say this 10 times so I don't forget:
- just because something has been tested and confirmed working, doesn't
mean that a trivial change can go in without testing simply because
it looks OK. test, test, test.
- just because something has been tested and confirmed working, doesn't
mean that a trivial change can go in without testing simply because
it looks OK. test, test, test.
- just because something has been tested and confirmed working, doesn't
mean that a trivial change can go in without testing simply because
it looks OK. test, test, test.
- just because something has been tested and confirmed working, doesn't
mean that a trivial change can go in without testing simply because
it looks OK. test, test, test.
- just because something has been tested and confirmed working, doesn't
mean that a trivial change can go in without testing simply because
it looks OK. test, test, test.
- just because something has been tested and confirmed working, doesn't
mean that a trivial change can go in without testing simply because
it looks OK. test, test, test.
- just because something has been tested and confirmed working, doesn't
mean that a trivial change can go in without testing simply because
it looks OK. test, test, test.
- just because something has been tested and confirmed working, doesn't
mean that a trivial change can go in without testing simply because
it looks OK. test, test, test.
- just because something has been tested and confirmed working, doesn't
mean that a trivial change can go in without testing simply because
it looks OK. test, test, test.
- just because something has been tested and confirmed working, doesn't
mean that a trivial change can go in without testing simply because
it looks OK. test, test, test.
I'm sorry guys.
2021-02-18 14:06:19 +00:00
|
|
|
args = [ "-f" "/etc/bluetooth/main.conf" ]
|
2021-02-09 09:27:12 +00:00
|
|
|
++ optional hasDisabledPlugins
|
|
|
|
"--noplugin=${concatStringsSep "," cfg.disabledPlugins}";
|
|
|
|
in
|
|
|
|
{
|
|
|
|
wantedBy = [ "bluetooth.target" ];
|
|
|
|
aliases = [ "dbus-org.bluez.service" ];
|
|
|
|
serviceConfig.ExecStart = [
|
|
|
|
""
|
2021-02-17 05:35:43 +00:00
|
|
|
"${package}/libexec/bluetooth/bluetoothd ${escapeShellArgs args}"
|
2021-02-09 09:27:12 +00:00
|
|
|
];
|
|
|
|
# restarting can leave people without a mouse/keyboard
|
|
|
|
unitConfig.X-RestartIfChanged = false;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
// (optionalAttrs cfg.hsphfpd.enable {
|
|
|
|
hsphfpd = {
|
|
|
|
after = [ "bluetooth.service" ];
|
|
|
|
requires = [ "bluetooth.service" ];
|
2017-02-17 18:44:04 +00:00
|
|
|
wantedBy = [ "bluetooth.target" ];
|
2021-02-09 09:27:12 +00:00
|
|
|
|
|
|
|
description = "A prototype implementation used for connecting HSP/HFP Bluetooth devices";
|
|
|
|
serviceConfig.ExecStart = "${pkgs.hsphfpd}/bin/hsphfpd.pl";
|
2017-02-17 18:44:04 +00:00
|
|
|
};
|
2021-02-09 09:27:12 +00:00
|
|
|
});
|
2017-02-01 21:52:12 +00:00
|
|
|
|
2017-02-17 18:44:04 +00:00
|
|
|
systemd.user.services = {
|
|
|
|
obex.aliases = [ "dbus-org.bluez.obex.service" ];
|
2020-10-25 01:12:05 +00:00
|
|
|
}
|
2021-02-09 09:27:12 +00:00
|
|
|
// optionalAttrs cfg.hsphfpd.enable {
|
|
|
|
telephony_client = {
|
|
|
|
wantedBy = [ "default.target" ];
|
2013-02-10 18:30:02 +00:00
|
|
|
|
2021-02-09 09:27:12 +00:00
|
|
|
description = "telephony_client for hsphfpd";
|
|
|
|
serviceConfig.ExecStart = "${pkgs.hsphfpd}/bin/telephony_client.pl";
|
|
|
|
};
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
};
|
2009-08-10 18:25:09 +00:00
|
|
|
}
|