From cb7427082bd0ea087a2904d6f07277d1834e4366 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sat, 17 May 2025 15:07:53 +0200 Subject: [PATCH] Hyprland: better monitor config order --- modules/hm/hyprland.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/hm/hyprland.nix b/modules/hm/hyprland.nix index 5be0645..cffee8c 100644 --- a/modules/hm/hyprland.nix +++ b/modules/hm/hyprland.nix @@ -133,10 +133,7 @@ in layout = "dwindle"; }; - monitor = [ - ",preferred,auto,auto" - # "Unknown-1,disable" - ] ++ lib.lists.optionals (hostName == "thor") [ + monitor = lib.lists.optionals (hostName == "thor") [ "DP-1,preferred,1080x200,auto" "DP-3,preferred,1080x200,auto" "HDMI-A-1,preferred,0x0,auto,transform,3" @@ -147,6 +144,9 @@ in "DP-1,preferred,0x0,1" "DP-3,preferred,2560x0,1" "eDP-1,preferred,1791x1440,1.66667" + ] ++ [ + ",preferred,auto,auto" + # "Unknown-1,disable" ]; misc.disable_hyprland_logo = true;