dotfiles.nix/home-manager/erika/programs/mangohud/default.nix

35 lines
602 B
Nix
Raw Normal View History

2023-04-07 07:19:41 +08:00
{ inputs, outputs, lib, config, pkgs, ... }:
{
programs.mangohud = {
enable = true;
2023-10-03 14:59:56 +08:00
package = pkgs.unstable.mangohud;
2023-04-07 07:19:41 +08:00
settings = {
2023-10-03 15:48:23 +08:00
# Performance
fps_limit = 60;
2023-10-03 14:59:56 +08:00
# GPU
2023-04-07 07:19:41 +08:00
gpu_temp = true;
2023-10-03 14:59:56 +08:00
gpu_junction_temp = true;
2023-04-07 07:19:41 +08:00
gpu_core_clock = true;
2023-10-03 14:59:56 +08:00
gpu_fan = true;
gpu_voltage = true;
# CPU
2023-04-07 07:19:41 +08:00
cpu_temp = true;
cpu_mhz = true;
2023-10-03 14:59:56 +08:00
# FPS
fps = true;
frametime = false;
frame_timing = false;
# Miscellaneous
wine = true;
gamemode = true;
# Hud dimensions
table_columns = 4;
2023-04-07 07:19:41 +08:00
};
};
}