nixos-configs/nixosModules/wine-gaming.nix

23 lines
390 B
Nix
Raw Normal View History

2025-03-17 19:06:47 +01:00
{ pkgs, ... }:
2023-09-23 11:29:46 +02:00
{
2025-09-15 17:18:59 +02:00
hardware = {
graphics = {
enable32Bit = true;
extraPackages = with pkgs; [ mangohud ];
extraPackages32 = with pkgs; [ mangohud ];
2023-09-23 11:53:52 +02:00
};
2023-09-23 11:29:46 +02:00
2025-09-15 17:18:59 +02:00
xpadneo.enable = true;
2023-09-23 11:29:46 +02:00
};
2025-09-15 17:18:59 +02:00
environment.systemPackages = with pkgs; [
wineWowPackages.stagingFull
wineWowPackages.fonts
winetricks
dxvk
mangohud
vulkan-tools
mesa-demos
2025-09-15 17:18:59 +02:00
];
2023-09-23 11:29:46 +02:00
}