Lutris: Difference between revisions
imported>Zyansheep provide more info |
imported>Quasigod-io This adds an explanation of how to add dependencies to Lutris, similar to what is available on the Steam page |
||
| Line 1: | Line 1: | ||
Lutris is a video game preservation platform that you can use to play or emulate pretty much any game you want. | Lutris is a video game preservation platform that you can use to play or emulate pretty much any game you want. | ||
== Adding missing dependencies == | |||
If any games are unable to run due to missing dependencies, they can be installed using the following methods. | |||
=== Libraries === | |||
<syntaxHighlight lang=nix> | |||
environment.systemPackages = with pkgs; [ | |||
(lutris.override { | |||
extraLibraries = pkgs: [ | |||
# List library dependencies here | |||
]; | |||
}) | |||
]; | |||
</syntaxHighlight> | |||
=== Packages === | |||
<syntaxHighlight lang=nix> | |||
environment.systemPackages = with pkgs; [ | |||
(lutris.override { | |||
withPrimus = true; | |||
extraPkgs = pkgs: [ | |||
# List package dependencies here | |||
]; | |||
}) | |||
]; | |||
</syntaxHighlight> | |||
== Known Issues == | == Known Issues == | ||