diff options
Diffstat (limited to 'programs/hypr/hyprland.nix')
-rw-r--r-- | programs/hypr/hyprland.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/programs/hypr/hyprland.nix b/programs/hypr/hyprland.nix index f339f8e..a37be7f 100644 --- a/programs/hypr/hyprland.nix +++ b/programs/hypr/hyprland.nix @@ -85,7 +85,7 @@ in { # Monitors monitor = map ( - monitor: "${monitor.name}, highres, auto, ${toString monitor.scale}" + monitor: "${monitor.name}, highres, auto, ${toString monitor.scale}, bitdepth, ${toString monitor.bitdepth}" ) config.monitors; @@ -337,6 +337,11 @@ in { no_update_news = true; no_donation_nag = true; }; + + # Experimental + experimental = { + xx_color_management_v4 = true; + }; }; # end settings }; # end hyprland }; # end home-manager |