summaryrefslogtreecommitdiff
path: root/modules/nixfiles/games/lutris.nix
blob: ec1eaa24a1283e1cfbf0c95ab039c2138d5961d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.games.lutris;
in {
  options.nixfiles.modules.games.lutris.enable =
    mkEnableOption "Whether to enable Lutris.";

  config = mkIf cfg.enable {
    nixfiles.modules.games = {
      steam-run.enable = true;
      gamemode.enable = true;
    };

    hm.home.packages = with pkgs; [
      (lutris.override {
        lutris-unwrapped = lutris-unwrapped.override {
          wine = buildFHSUserEnv {
            # We don't really need Wine because Lutris downloads required
            # runtime files for us. This feature is more robust because you can
            # juggle different versions without manually rebuilding anything
            # because nixpkgs cache was pruned.
            name = "empty";
          };
        };
        steamSupport = false;
        extraPkgs = _: [
          driversi686Linux.mesa # Battle.net
        ];
      })
    ];
  };
}