13 lines
276 B
Nix
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
|
|
};
|
|
};
|
|
}
|