DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: e318801d7965d498021cb5fef81367c5fe805ff3 nix-arta/roles/gaming/default.nix -rw-r--r-- 1.0 KiB
e318801dJonni Liljamo feat(roles/gaming): move steam, add lutris 4 months ago
                                                                                
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
  config,
  lib,
  pkgs,
  ...
}: let
  cfg = config.roles.gaming;
in {
  imports = [
    ./lutris.nix
    ./steam.nix
  ];

  options.roles.gaming = {
    enable = lib.mkEnableOption "gaming utilities";
    lutris.enable = lib.mkEnableOption "Lutris";
    steam.enable = lib.mkEnableOption "Steam";
  };

  config = lib.mkIf cfg.enable {
    programs.gamemode = {
      enable = true;
    };

    environment.systemPackages = with pkgs; [
      gamescope
      protontricks
      gnome.zenity
    ];

    hm = {
      programs.mangohud = {
        enable = true;
        enableSessionWide = false;
        settings = {
          fps_limit = "60,90,120,200";
          time = true;

          gpu_stats = true;
          gpu_temp = true;
          gpu_text = "GPU";

          cpu_stats = true;
          cpu_temp = true;
          cpu_text = "CPU";

          vram = true;
          ram = true;

          fps = true;
          frametime = true;
          frame_timing = true;
          show_fps_limit = true;
        };
      };
    };
  };
}