[NixOS] Setup for rocket league in linux

This commit is contained in:
Ivan Malison 2023-06-13 22:19:25 -06:00
parent a6f4aa27bc
commit 9808c67841
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -1,7 +1,12 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
environment.systemPackages = with 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;
} }