Refactor mangohud config.

Refactor mangohud config.
This commit is contained in:
jay
2025-07-15 22:45:34 -04:00
parent 7bac3c13aa
commit 77800be925
3 changed files with 15 additions and 4 deletions

View File

@@ -16,6 +16,7 @@
./programs/hyprlock.nix
./programs/hyprpanel.nix
./programs/lazygit.nix
./programs/mangohud.nix
#./programs/nixcord.nix
./programs/oh-my-posh.nix
./programs/rbw.nix

View File

@@ -0,0 +1,14 @@
{ ... } : {
programs.mangohud = {
enable = true;
enableSessionWide = true;
settings = {
position = "top-right";
cpu_stats = true;
gpu_stats = true;
fps = true;
font_size = 12;
cellpadding_y = -0.070;
};
};
}

View File

@@ -25,9 +25,5 @@
};
};
};
environment.systemPackages = [
pkgs.mangohud
];
}