aboutsummaryrefslogtreecommitdiff
path: root/modules/system/wine.nix
blob: 182474953821aea6a3a7371e5e853afe0cac9064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  flake.modules.homeManager.wine =
    { pkgs, ... }:
    {
      home.packages = with pkgs; [
        q4wine
        winetricks
        unzip
        cabextract
        wineWow64Packages.waylandFull
      ];
    };
}