DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 8c36e1a019c5bde84a09768918dd4d3ff2432db5 nix-arta/modules/home/mangohud.nix -rw-r--r-- 535 bytes
8c36e1a0Jonni Liljamo feat: alice initial 4 days 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
{
  flake.modules.homeManager.mangohud = {...}: {
    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;
      };
    };
  };
}