nixos-configs/modules/gaming.nix

31 lines
533 B
Nix
Raw Normal View History

2025-03-17 19:06:47 +01:00
{ pkgs, ... }:
2023-09-23 11:29:46 +02:00
{
config = {
2024-01-21 11:08:18 +01:00
hardware = {
2024-11-24 15:16:45 +01:00
graphics = {
enable32Bit = true;
2024-10-27 12:33:35 +01:00
extraPackages = with pkgs; [ mangohud ];
extraPackages32 = with pkgs; [ mangohud ];
2024-01-21 11:08:18 +01:00
};
xpadneo.enable = true;
2023-09-23 11:53:52 +02:00
};
2023-09-23 11:29:46 +02:00
environment.systemPackages = with pkgs; [
wineWowPackages.stagingFull
wineWowPackages.fonts
winetricks
2023-09-23 11:53:52 +02:00
dxvk
mangohud
vulkan-tools
2023-10-08 12:29:20 +02:00
glxinfo
2024-02-05 22:44:35 +01:00
lutris
2023-09-23 11:29:46 +02:00
];
2023-09-24 13:04:45 +02:00
2025-09-14 12:22:20 +02:00
networking.firewall.allowedUDPPorts = [
# Factorio
34197
2023-10-02 18:14:05 +02:00
];
2023-09-23 11:29:46 +02:00
};
}