This commit is contained in:
ashisgreat22 2026-01-14 21:24:19 +01:00
commit 2be8de47fa
87 changed files with 11501 additions and 0 deletions

29
home/mangohud.nix Normal file
View file

@ -0,0 +1,29 @@
{ pkgs, ... }:
{
programs.mangohud = {
enable = true;
settings = {
# Performance overlay
fps = true;
frametime = false;
frame_timing = false;
histogram = false;
# Hardware stats (Ensure disabled)
cpu_stats = false;
gpu_stats = false;
ram = false;
vram = false;
core_load = false;
gpu_load = false;
# Appearance
legacy_layout = false;
table_columns = 3;
background_alpha = 0.0;
font_size = 24;
position = "top-left";
round_corners = 10;
};
};
}