Revert "attempt to use wine stable to see if grapejuice will work"

This reverts commit 0fa1177098.
This commit is contained in:
Sakooooo 2023-09-16 14:02:37 +04:00
parent 0fa1177098
commit a7ffc641eb
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -1,14 +1,9 @@
{ { outputs, options, config, lib, pkgs, ...}:
outputs, with lib;
options, let
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.desktop.game.wine; cfg = config.modules.desktop.game.wine;
in { in
{
options.modules.desktop.game.wine = { options.modules.desktop.game.wine = {
enable = mkEnableOption false; enable = mkEnableOption false;
}; };
@ -16,7 +11,13 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [ users.users.sako.packages = with pkgs; [
winetricks winetricks
wineWowPackages.stable wineWowPackages.staging
]; ];
nixpkgs.config = {
wine = {
release = "unstable";
build = "wineWow";
};
};
}; };
} }