Lutris: Difference between revisions

From NixOS Wiki
imported>Quasigod-io
m Removed unnecessary line I mistakenly included last time
imported>Wolf2482-1639
This issue appears to be resolved.
Line 29: Line 29:
=== Icons does not appear ===
=== Icons does not appear ===
You have to install a compatible icon theme. For example, you can install the <code>adwaita-icon-theme</code> available as <code>gnome3.adwaita-icon-theme</code> in Nixpkgs.
You have to install a compatible icon theme. For example, you can install the <code>adwaita-icon-theme</code> available as <code>gnome3.adwaita-icon-theme</code> in Nixpkgs.
=== Vulkan not found on startup ===
This warning may be cosmetic for some people. See this open [https://github.com/NixOS/nixpkgs/issues/69037#issuecomment-547899845 issue]


=== Epic Game Store ===
=== Epic Game Store ===

Revision as of 17:12, 24 December 2022

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

  environment.systemPackages = with pkgs; [
    (lutris.override {
      extraLibraries =  pkgs: [
        # List library dependencies here
      ];
    })
  ];

Packages

  environment.systemPackages = with pkgs; [
    (lutris.override {
       extraPkgs = pkgs: [
         # List package dependencies here
       ];
    })
  ];

Known Issues

Icons does not appear

You have to install a compatible icon theme. For example, you can install the adwaita-icon-theme available as gnome3.adwaita-icon-theme in Nixpkgs.

Epic Game Store

If you're running a 64bit environment you need to ensure that you enable 32bit support in your configuration.nix: hardware.opengl.driSupport32Bit = true