Nix configurations for my personal machines (Linux & macOS)
1{
2 delib,
3 pkgs,
4 ...
5}:
6delib.module {
7 name = "bluetooth";
8
9 options = delib.singleEnableOption true;
10
11 nixos.ifEnabled = {
12 hardware.bluetooth.enable = true;
13 # TODO: determine if this actually affected me. Maybe should yeet.
14 hardware.bluetooth.settings = {
15 # Try and reduce latency from Xbox Series controllers
16 # https://atar-axis.github.io/xpadneo#high-latency-or-lost-button-events-with-bluetooth-le
17 LE = {
18 MinConnectionInterval = 7;
19 MaxConnectionInterval = 9;
20 ConnectionLatency = 0;
21 };
22 };
23 hardware.xpadneo.enable = true;
24 environment.systemPackages = [pkgs.kdePackages.bluedevil];
25 };
26}