mio-ops/profiles/wine.nix

22 lines
365 B
Nix
Raw Normal View History

2021-07-18 08:24:26 +00:00
{ 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"; })
# 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
];
}