nix-config/aspects/gaming/hardware.nix
2026-02-12 18:50:38 -03:00

13 lines
276 B
Nix

{ ... }:
{
flake.modules.nixos.gaming-hardware =
{ ... }:
{
hardware = {
xpadneo.enable = true;
steam-hardware.enable = true; # Allow steam client to manage controllers
graphics.enable32Bit = true; # For OpenGL games
};
};
}