aboutsummaryrefslogtreecommitdiff
path: root/modules/system/wine.nix
blob: e78dbed89890cac2d02fea16019a387a4b5cac47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  flake.modules.homeManager.wine =
    { pkgs, ... }:
    {
      home.packages = with pkgs; [
        q4wine
        winetricks
        unzip
        cabextract
        wineWow64Packages.waylandFull
      ];
      home.sessionVariables = {
        WINEARCH = "win64";
        WINEPREFIX = "$HOME/.wine";
      };
    };
}