a few more additions

This commit is contained in:
Miguel Palhas
2026-06-27 14:16:30 +01:00
parent 559edbe89a
commit 4eeef628b0
12 changed files with 94 additions and 6 deletions
+26
View File
@@ -0,0 +1,26 @@
{
lib,
inputs,
pkgs,
config,
...
}:
{
wayland.windowManager.hyprland.settings = {
monitor = [
# List HDMI-A-1 first so it becomes the primary monitor (ID 0)
"HDMI-A-1, 3840x2160, 0x2160, 1"
# Then the other monitors
"DP-2, 3840x2160, 3840x180, 1, transform, 1"
"DP-1, 3840x2160, 0x0, 1"
];
workspace = [
"1, monitor:HDMI-A-1, default:true, persistent:true" # bottom-left (primary)
"2, monitor:DP-2, persistent:true" # right (vertical)
"3, monitor:DP-1, persistent:true" # top-left
"4, monitor:HDMI-A-1" # bottom-left
"5, monitor:DP-2" # right (vertical)
"6, monitor:DP-1" # top-left
];
};
}