13 lines
315 B
Nix
13 lines
315 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;
|
|
};
|
|
};
|
|
};
|
|
}
|