Files
nixos-config/modules/home/gaming.nix

26 lines
548 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
prismlauncher
];
# MangoHud: Vulkan/OpenGL performance overlay. Activate per-game with
# MANGOHUD=1 or globally in Steam: Properties → Launch Options → "mangohud %command%".
programs.mangohud = {
enable = true;
settings = {
fps = true;
gpu_stats = true;
gpu_temp = true;
cpu_stats = true;
cpu_temp = true;
ram = true;
vram = true;
frame_timing = 1;
position = "top-left";
toggle_hud = "Shift_R+F12";
};
};
}