mio-ops/profiles/wine.nix

20 lines
360 B
Nix
Raw Normal View History

2022-03-07 14:26:15 +00:00
{pkgs, ...}: {
2021-07-18 08:24:26 +00:00
environment.systemPackages = with pkgs; [
# ...
# support both 32- and 64-bit applications
#wineWowPackages.stable
# support 32-bit only
wine
# support 64-bit only
2022-03-07 14:26:15 +00:00
(wine.override {wineBuild = "wine64";})
2021-07-18 08:24:26 +00:00
# wine-staging (version with experimental features)
2021-12-23 01:02:13 +00:00
wineWowPackages.staging
2021-07-18 08:24:26 +00:00
2021-12-23 01:02:13 +00:00
winetricks
2021-07-18 08:24:26 +00:00
];
}