From f80df9f5b8fc4ab93b73b3802045d575db62bd20 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Sat, 26 Jul 2025 04:02:38 +0530 Subject: [PATCH] feat: Added proton-ge to steam and hdr for primary monitor --- home/services/hyprland.nix | 5 +++-- nixos/ryu/programs/steam.nix | 5 ++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/home/services/hyprland.nix b/home/services/hyprland.nix index 917033ef..7e22add3 100644 --- a/home/services/hyprland.nix +++ b/home/services/hyprland.nix @@ -53,9 +53,10 @@ settings = { source = "${pkgs.catppuccinThemes.hyprland}/themes/mocha.conf"; "render:explicit_sync" = true; + "render:cm_fs_passthrough" = 1; monitor = [ - # "${device.monitors.primary}, 2560x1440@360, 0x0, 1, transform, 0, bitdepth, 10, cm, hdr" # Washed out colors and can't record with obs - "${device.monitors.primary}, 2560x1440@360, 0x0, 1, transform, 0" + "${device.monitors.primary}, 2560x1440@360, 0x0, 1, transform, 0, bitdepth, 10, cm, hdr, sdrbrightness, 1.3, sdrsaturation, 1.0" + # "${device.monitors.primary}, 2560x1440@360, 0x0, 1, transform, 0" "${device.monitors.secondary}, 2560x1440@170, -1440x-1120, 1, transform, 1" "${device.monitors.tertiary}, 2560x1440@170, 2560x-1120, 1, transform, 3" ]; diff --git a/nixos/ryu/programs/steam.nix b/nixos/ryu/programs/steam.nix index fdd003c4..536e80c4 100644 --- a/nixos/ryu/programs/steam.nix +++ b/nixos/ryu/programs/steam.nix @@ -1,8 +1,11 @@ -{...}: { +{pkgs, ...}: { programs.steam = { enable = true; gamescopeSession.enable = true; remotePlay.openFirewall = true; dedicatedServer.openFirewall = true; + extraCompatPackages = [ + pkgs.proton-ge-bin + ]; }; }