From 47dc95c42f9ac28f27732436f2e5ed31a627997c Mon Sep 17 00:00:00 2001 From: Swarsel Date: Mon, 19 Aug 2024 08:36:24 +0200 Subject: [PATCH] feat: add support for xbox controller dongle --- SwarselSystems.org | 7 +++++++ profiles/optional/nixos/gaming.nix | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/SwarselSystems.org b/SwarselSystems.org index 078cf0a..3ed8e27 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -6301,6 +6301,13 @@ This opens a few gaming ports and installs the steam configuration suite for gam pkgs.proton-ge-bin ]; }; + + hardware.xone.enable = true; + + environment.systemPackages = [ + linuxKernel.packages.linux_6_10.xone + ]; + } diff --git a/profiles/optional/nixos/gaming.nix b/profiles/optional/nixos/gaming.nix index aa65116..3b6a3eb 100644 --- a/profiles/optional/nixos/gaming.nix +++ b/profiles/optional/nixos/gaming.nix @@ -21,4 +21,11 @@ pkgs.proton-ge-bin ]; }; + + hardware.xone.enable = true; + + environment.systemPackages = [ + linuxKernel.packages.linux_6_10.xone + ]; + }