23 lines
461 B
Nix
23 lines
461 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
# ...
|
|
|
|
# support both 32- and 64-bit applications
|
|
# wineWowPackages.stable
|
|
|
|
# support 32-bit only
|
|
# wine
|
|
|
|
# support 64-bit only
|
|
# (wine.override { wineBuild = "wine64"; })
|
|
|
|
# wine-staging (version with experimental features)
|
|
# wineWowPackages.staging
|
|
|
|
# winetricks (all versions)
|
|
winetricks
|
|
|
|
# native wayland support (unstable)
|
|
wineWowPackages.waylandFull
|
|
];
|
|
}
|