added wine

This commit is contained in:
Harry 2025-01-12 09:12:36 +01:00
parent cbd0958e16
commit 6ea7577261
2 changed files with 28 additions and 0 deletions

View file

@ -1,6 +1,7 @@
{config, ...}:
{
imports = [
./wine.nix
./neovim.nix
./flatpak.nix
./discord.nix

View file

@ -0,0 +1,27 @@
{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
];
}