From 7b3e54beaef8122cc77dd4d051687b4f444e053b Mon Sep 17 00:00:00 2001 From: iFargle Date: Sun, 16 Jul 2023 15:51:38 +0900 Subject: [PATCH] Add wine --- hosts/nixos-laptop/configuration.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/hosts/nixos-laptop/configuration.nix b/hosts/nixos-laptop/configuration.nix index b16ebf0a..e8dd8dbd 100644 --- a/hosts/nixos-laptop/configuration.nix +++ b/hosts/nixos-laptop/configuration.nix @@ -53,5 +53,19 @@ vulkan-validation-layers vulkan-tools gwe + + # wine install + # 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 (all versions) + winetricks + # native wayland support (unstable) + wineWowPackages.waylandFull ]; }