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