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