wine: add basic wine profile
This commit is contained in:
parent
fa989e19ac
commit
2bbad56aa5
22
profiles/wine.nix
Normal file
22
profiles/wine.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ 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)
|
||||||
|
#wineWowPackages.staging
|
||||||
|
|
||||||
|
# winetricks and other programs depending on wine need to use the same wine version
|
||||||
|
(winetricks.override { wine = wineWowPackages.staging; })
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue