mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-31 19:39:33 +01:00
28 lines
480 B
Nix
28 lines
480 B
Nix
|
{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
|
||
|
];
|
||
|
}
|