Lutris: Difference between revisions
m Add link to lutris.net |
No edit summary |
||
| Line 1: | Line 1: | ||
[https://lutris.net/ Lutris] is a video game preservation platform that you can use to play or emulate pretty much any game you want. | [https://lutris.net/ Lutris] is a video game preservation platform that you can use to play or emulate pretty much any game you want. | ||
== | == Installation == | ||
Install Lutris by adding the [https://search.nixos.org/packages?show=lutris&query=lutris Lutris package]<syntaxhighlight lang="nix"> | |||
environment.systemPackages = with pkgs; [ | |||
lutris | |||
]; | |||
</syntaxhighlight> | |||
=== | === Overriding extra libraries and packages === | ||
< | If any games are unable to run due to missing dependencies, they can be installed using the following methods.<syntaxhighlight lang="nix"> | ||
environment.systemPackages = with pkgs; [ | |||
(lutris.override { | |||
# List of additional system libraries | |||
extraLibraries = pkgs: [ ]; | |||
# List of additional system packages | |||
extraPkgs = pkgs: [ ]; | |||
}) | |||
]; | |||
</syntaxhighlight> | |||
</ | |||
== Known Issues == | == Known Issues == | ||
| Line 31: | Line 26: | ||
=== Epic Game Store === | === Epic Game Store === | ||
If you're running a 64bit environment you need to ensure that you enable 32bit support | If you're running a 64bit environment you need to ensure that you enable 32bit support:<syntaxhighlight lang="nix"> | ||
hardware.graphics.enable32Bit = true; | |||
hardware.graphics.enable32Bit = true | </syntaxhighlight> | ||
</ | |||
=== Incompatible Lutris libraries === | === Incompatible Lutris libraries === | ||