- Remove heroic overrides - Add Mangohud overlay with custom settings - Introduce a gamescope session script for Steam with HDR and compatibility adjustments; ACTUALLY WORKS! Games run flawless - Update desktop window properties and GNOME session defaults - Enable Waydroid configuration in rune
30 lines
472 B
Nix
30 lines
472 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = lib.custom.scanPaths ./.;
|
|
|
|
home.packages = with pkgs; [
|
|
prismlauncher
|
|
steam-run
|
|
heroic
|
|
# modrinth-app
|
|
];
|
|
|
|
programs.mangohud = {
|
|
enable = true;
|
|
settings = {
|
|
position = "top-right";
|
|
cpu_stats = true;
|
|
gpu_stats = true;
|
|
fps = true;
|
|
font_size = 12;
|
|
cellpadding_y = -0.070;
|
|
background_alpha = lib.mkForce 0.5;
|
|
alpha = lib.mkForce 0.75;
|
|
};
|
|
};
|
|
}
|