feat: add wine support

This commit is contained in:
DACHXY 2025-01-15 16:00:46 +08:00
parent 34d447f1a6
commit a2f7998f1a
3 changed files with 9 additions and 1 deletions

7
system/modules/wine.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
wineWowPackages.waylandFull # 32-bit & 64-bit
winetricks
];
}