nix-config/hosts/goober/features/software/wine.nix

31 lines
517 B
Nix
Raw Normal View History

2025-01-12 09:12:36 +01:00
{config, pkgs, ...}:
{
environment.systemPackages = with pkgs; [
# ...
# support both 32- and 64-bit applications
wineWowPackages.stable
# support 32-bit only
wine
# support 64-bit only
(wine.override { wineBuild = "wine64"; })
# support 64-bit only
wine64
# wine-staging (version with experimental features)
wineWowPackages.staging
# winetricks (all versions)
winetricks
# native wayland support (unstable)
wineWowPackages.waylandFull
# for easy games gestion
lutris
2025-01-12 09:12:36 +01:00
];
}