Nix configurations for my personal machines (Linux & macOS)

chore: disable xpadneo

ovyerus.com 0ddd9e5e f7d40de2

verified
Changed files
+11 -10
modules
+10 -10
modules/bluetooth.nix
···
nixos.ifEnabled = {
hardware.bluetooth.enable = true;
# TODO: determine if this actually affected me. Maybe should yeet.
-
hardware.bluetooth.settings = {
-
# Try and reduce latency from Xbox Series controllers
-
# https://atar-axis.github.io/xpadneo#high-latency-or-lost-button-events-with-bluetooth-le
-
LE = {
-
MinConnectionInterval = 7;
-
MaxConnectionInterval = 9;
-
ConnectionLatency = 0;
-
};
-
};
-
hardware.xpadneo.enable = true;
environment.systemPackages = [pkgs.kdePackages.bluedevil];
};
}
···
nixos.ifEnabled = {
hardware.bluetooth.enable = true;
# TODO: determine if this actually affected me. Maybe should yeet.
+
# hardware.bluetooth.settings = {
+
# # Try and reduce latency from Xbox Series controllers
+
# # https://atar-axis.github.io/xpadneo#high-latency-or-lost-button-events-with-bluetooth-le
+
# LE = {
+
# MinConnectionInterval = 7;
+
# MaxConnectionInterval = 9;
+
# ConnectionLatency = 0;
+
# };
+
# };
+
# hardware.xpadneo.enable = true;
environment.systemPackages = [pkgs.kdePackages.bluedevil];
};
}
+1
modules/graphics.nix
···
};
environment.systemPackages = with pkgs; [amdgpu_top lact nvtopPackages.full];
systemd.services.lactd = {
description = "AMDGPU Control Daemon";
···
};
environment.systemPackages = with pkgs; [amdgpu_top lact nvtopPackages.full];
+
environment.sessionVariables.KWIN_DRM_NO_AMS = "1";
systemd.services.lactd = {
description = "AMDGPU Control Daemon";