15 lines
204 B
Nix
15 lines
204 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
environment.systemPackages = with pkgs; [
|
|
# ...
|
|
|
|
# support both 32-bit and 64-bit applications
|
|
wineWowPackages.stable
|
|
];
|
|
|
|
programs.lutris.enable = true;
|
|
}
|