nixos-configuration/modules/gaming.nix
2025-09-14 12:22:20 +02:00

30 lines
533 B
Nix

{ pkgs, ... }:
{
config = {
hardware = {
graphics = {
enable32Bit = true;
extraPackages = with pkgs; [ mangohud ];
extraPackages32 = with pkgs; [ mangohud ];
};
xpadneo.enable = true;
};
environment.systemPackages = with pkgs; [
wineWowPackages.stagingFull
wineWowPackages.fonts
winetricks
dxvk
mangohud
vulkan-tools
glxinfo
lutris
];
networking.firewall.allowedUDPPorts = [
# Factorio
34197
];
};
}