Added wine flake

This commit is contained in:
2025-07-24 13:27:35 +03:00
parent ca0d9d1c27
commit 20f207ddd2
3 changed files with 16 additions and 3 deletions

12
modules/common/wine.nix Normal file
View File

@@ -0,0 +1,12 @@
{
config,
pkgs,
...
}: {
environment.systemPackages = with pkgs; [
# ...
# support both 32-bit and 64-bit applications
wineWowPackages.stable
];
}