mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-31 03:19:37 +01:00
added wine
This commit is contained in:
parent
cbd0958e16
commit
6ea7577261
|
@ -1,6 +1,7 @@
|
||||||
{config, ...}:
|
{config, ...}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./wine.nix
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./flatpak.nix
|
./flatpak.nix
|
||||||
./discord.nix
|
./discord.nix
|
||||||
|
|
27
hosts/goober/features/software/wine.nix
Normal file
27
hosts/goober/features/software/wine.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue