Files
nixos-haus/modules/common/wine.nix
2025-07-24 13:27:35 +03:00

13 lines
170 B
Nix

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