feat: Added proton-ge to steam and hdr for primary monitor

This commit is contained in:
uttarayan21
2025-07-26 04:02:38 +05:30
parent e7c8b6b3ba
commit f80df9f5b8
2 changed files with 7 additions and 3 deletions

View File

@@ -53,9 +53,10 @@
settings = { settings = {
source = "${pkgs.catppuccinThemes.hyprland}/themes/mocha.conf"; source = "${pkgs.catppuccinThemes.hyprland}/themes/mocha.conf";
"render:explicit_sync" = true; "render:explicit_sync" = true;
"render:cm_fs_passthrough" = 1;
monitor = [ 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, bitdepth, 10, cm, hdr, sdrbrightness, 1.3, sdrsaturation, 1.0"
"${device.monitors.primary}, 2560x1440@360, 0x0, 1, transform, 0" # "${device.monitors.primary}, 2560x1440@360, 0x0, 1, transform, 0"
"${device.monitors.secondary}, 2560x1440@170, -1440x-1120, 1, transform, 1" "${device.monitors.secondary}, 2560x1440@170, -1440x-1120, 1, transform, 1"
"${device.monitors.tertiary}, 2560x1440@170, 2560x-1120, 1, transform, 3" "${device.monitors.tertiary}, 2560x1440@170, 2560x-1120, 1, transform, 3"
]; ];

View File

@@ -1,8 +1,11 @@
{...}: { {pkgs, ...}: {
programs.steam = { programs.steam = {
enable = true; enable = true;
gamescopeSession.enable = true; gamescopeSession.enable = true;
remotePlay.openFirewall = true; remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true; dedicatedServer.openFirewall = true;
extraCompatPackages = [
pkgs.proton-ge-bin
];
}; };
} }