wip
CI / lint (push) Successful in 33s
CI / eval (push) Failing after 1m41s

This commit is contained in:
Miguel Palhas
2026-07-30 13:18:47 +01:00
parent 8cfa920ea8
commit 3d9c273fd3
9 changed files with 317 additions and 345 deletions
+8 -9
View File
@@ -1,12 +1,11 @@
_:
{
wayland.windowManager.hyprland.settings = {
monitor = [
"eDP-1, preferred, 0x0, 1, bitdepth, 8"
"DP-1, preferred, auto-up, 1"
"DP-2, preferred, auto-up, 1"
"DP-3, preferred, auto-up, 1"
"DP-4, preferred, auto-up, 1"
];
};
# Hyprland 0.55+ is Lua-only (see home/common/programs/hyprland).
wayland.windowManager.hyprland.extraConfig = ''
hl.monitor({ output = "eDP-1", mode = "preferred", position = "0x0", scale = 1, bitdepth = 8 })
hl.monitor({ output = "DP-1", mode = "preferred", position = "auto-up", scale = 1 })
hl.monitor({ output = "DP-2", mode = "preferred", position = "auto-up", scale = 1 })
hl.monitor({ output = "DP-3", mode = "preferred", position = "auto-up", scale = 1 })
hl.monitor({ output = "DP-4", mode = "preferred", position = "auto-up", scale = 1 })
'';
}