attempt to use wine stable to see if grapejuice will work

This commit is contained in:
Sakooooo 2023-09-16 14:00:40 +04:00
parent 6978253bcb
commit 0fa1177098
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

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