summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/hardware/bluetooth.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/hardware/bluetooth.nix')
-rw-r--r--nixos/modules/services/hardware/bluetooth.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/nixos/modules/services/hardware/bluetooth.nix b/nixos/modules/services/hardware/bluetooth.nix
index 6453e6968dcc..2a58be51bb02 100644
--- a/nixos/modules/services/hardware/bluetooth.nix
+++ b/nixos/modules/services/hardware/bluetooth.nix
@@ -71,6 +71,29 @@ in
};
description = lib.mdDoc "Set configuration for system-wide bluetooth (/etc/bluetooth/main.conf).";
};
+
+ 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).";
+ };
};
};
@@ -80,6 +103,10 @@ in
environment.systemPackages = [ package ]
++ optional cfg.hsphfpd.enable pkgs.hsphfpd;
+ environment.etc."bluetooth/input.conf".source =
+ cfgFmt.generate "input.conf" cfg.input;
+ environment.etc."bluetooth/network.conf".source =
+ cfgFmt.generate "network.conf" cfg.network;
environment.etc."bluetooth/main.conf".source =
cfgFmt.generate "main.conf" (recursiveUpdate defaults cfg.settings);
services.udev.packages = [ package ];