Added Mangohud for frame cap

This commit is contained in:
2025-07-26 09:43:17 +02:00
parent 65917a7bb9
commit c4de6fae0a
2 changed files with 10 additions and 0 deletions

View File

@@ -8,6 +8,7 @@
./nvim ./nvim
./tmux.nix ./tmux.nix
./zoxide.nix ./zoxide.nix
./mangohud.nix
] ++ (if currentSystemDe == "hyprland" then [ ] ++ (if currentSystemDe == "hyprland" then [
./hyprland ./hyprland
] else [] ] else []

9
home/mangohud.nix Normal file
View File

@@ -0,0 +1,9 @@
{ ... }:
{
programs.mangohud = {
enable = true;
settings = {
fps_limit = 75;
};
};
}