summaryrefslogtreecommitdiff
path: root/modules/nixos/games/lutris.nix
blob: feaeefa91733356118b2485d3c7347f48f352ba3 (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
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.games.lutris;
in {
  options.nixfiles.modules.games.lutris.enable = mkEnableOption "Lutris";

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

    hm.home.packages = with pkgs; [
      (lutris.override {
        extraPkgs = _: [wine];
      })
      vkBasalt
      winetricks
    ];
  };
}