mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-09 23:20:18 +02:00
added wine
This commit is contained in:
parent
cbd0958e16
commit
6ea7577261
2 changed files with 28 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue