nix-stuff/roles/gaming/programs/mangohud.nix
2024-03-20 13:03:05 +01:00

13 lines
299 B
Nix

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