diff --git a/hosts/goober/features/software/default.nix b/hosts/goober/features/software/default.nix index 84fecea..7333f70 100644 --- a/hosts/goober/features/software/default.nix +++ b/hosts/goober/features/software/default.nix @@ -1,6 +1,7 @@ {config, ...}: { imports = [ + ./wine.nix ./neovim.nix ./flatpak.nix ./discord.nix diff --git a/hosts/goober/features/software/wine.nix b/hosts/goober/features/software/wine.nix new file mode 100644 index 0000000..4eeec14 --- /dev/null +++ b/hosts/goober/features/software/wine.nix @@ -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 +]; +}