nix-stuff/roles/gaming/programs/mangohud.nix
2023-10-03 00:36:14 +02:00

16 lines
292 B
Nix

{ config, ... }:
{
home-manager.users.toast = { config, ... }:
{
programs.mangohud = {
enable = true;
# This only works for Vulkan, openGL programs still need the mangohud wrapper
enableSessionWide = true;
settings = {
preset = 4;
no_display = true;
};
};
};
}