From 2bbad56aa5f09d42b2c595ad783b3630633fbb59 Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Sun, 18 Jul 2021 18:24:26 +1000 Subject: [PATCH] wine: add basic wine profile --- profiles/wine.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 profiles/wine.nix diff --git a/profiles/wine.nix b/profiles/wine.nix new file mode 100644 index 0000000..5727b0f --- /dev/null +++ b/profiles/wine.nix @@ -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; }) + ]; +}