From 9808c678414ea66e6f5fd28bd140d1e345d2bc25 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 13 Jun 2023 22:19:25 -0600 Subject: [PATCH] [NixOS] Setup for rocket league in linux --- nixos/games.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/nixos/games.nix b/nixos/games.nix index 472ee170..519ddcff 100644 --- a/nixos/games.nix +++ b/nixos/games.nix @@ -1,7 +1,12 @@ { config, pkgs, ... }: { environment.systemPackages = with pkgs; [ - # steam + steam + heroic ]; - boot.extraModulePackages = with pkgs; [ xboxdrv ]; + boot.extraModulePackages = with pkgs; [ + xboxdrv + ]; + # hardware.xpadneo.enable = true; + hardware.xone.enable = true; }