From 4c755a638269031881e3138af579d6a50bbfa0ef Mon Sep 17 00:00:00 2001 From: Joshua Yuen Date: Fri, 19 Jun 2026 19:02:32 -0400 Subject: [PATCH] Change hyprland monitor scale default to auto instead of 1 --- modules/options/hyprland.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/options/hyprland.nix b/modules/options/hyprland.nix index ddf4330..bdc761f 100644 --- a/modules/options/hyprland.nix +++ b/modules/options/hyprland.nix @@ -30,7 +30,7 @@ with lib; }; monitor = mkOption { type = types.listOf types.str; - default = [ ",preferred,auto,1" ]; + default = [ ",preferred,auto,auto" ]; description = '' Monitors to use for Hyprland. '';