From f14acbe1957b1ef00641f8f6d217337eccb946f2 Mon Sep 17 00:00:00 2001 From: Guanran Wang Date: Sun, 11 Feb 2024 23:01:20 +0800 Subject: [PATCH] nixos/modules/xbox-one-controller: fix incorrect comment --- .../myFlake/hardware/accessories/xbox-one-controller.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/myFlake/hardware/accessories/xbox-one-controller.nix b/nixos/modules/myFlake/hardware/accessories/xbox-one-controller.nix index 07fb140..3e1ae52 100644 --- a/nixos/modules/myFlake/hardware/accessories/xbox-one-controller.nix +++ b/nixos/modules/myFlake/hardware/accessories/xbox-one-controller.nix @@ -12,7 +12,7 @@ in { # https://wiki.archlinux.org/title/Gamepad#Connect_Xbox_Wireless_Controller_with_Bluetooth config = lib.mkIf cfg.enable { - hardware.xone.enable = true; # via Bluetooth - hardware.xpadneo.enable = true; # via wired or wireless dongle + hardware.xone.enable = true; # via wired or wireless dongle + hardware.xpadneo.enable = true; # via Bluetooth }; }