From 22b69810bb5294820b43dc0e2ccc399d30487c8c Mon Sep 17 00:00:00 2001 From: h7x4 Date: Wed, 20 Aug 2025 16:15:40 +0200 Subject: [PATCH] xps16/home: additional wayland monitor declarations --- hosts/xps16/home/default.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/hosts/xps16/home/default.nix b/hosts/xps16/home/default.nix index 7359e63..53d7806 100644 --- a/hosts/xps16/home/default.nix +++ b/hosts/xps16/home/default.nix @@ -2,5 +2,19 @@ { home.stateVersion = "24.11"; - programs.waybar.settings.mainBar.output = [ "eDP-1" ]; + programs.waybar.settings.mainBar.output = [ "eDP-1" "DP-7" ]; + + wayland.windowManager.hyprland.settings = { + monitor = [ + "eDP-1, 3840x2400@90.00Hz, 0x0, 2" + + # Office, childhood home + "desc:Dell Inc. DELL U2713H C6F0K52E19AL, 2560x1440, 1920x0, 1" + "desc:Dell Inc. DELL U2713H C6F0K3CH0MUL, 2560x1440, ${toString (1920 + 2560)}x0, 1" + + # PVV + "desc:ASUSTek COMPUTER INC MG248 K2LMQS048969, 1920x1080@60.00Hz, -1920x0, 1" + "desc:Ancor Communications Inc MG248 G7LMQS010063, 1920x1080@60.00Hz, -${toString (1920 * 2)}x0, 1" + ]; + }; }