Gaming-related NixOS and home-manager configuration: flatpak, hardware, launchers, mangohud, steam Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
256 B
Nix
11 lines
256 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
|
|
};
|
|
};
|
|
}
|