monitor crimes

This commit is contained in:
Reid 2026-04-27 19:58:15 -07:00
parent bf89ee073a
commit 97110919cd
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
2 changed files with 49 additions and 15 deletions

View file

@ -85,10 +85,13 @@
# monitors, see `modules/desktop/monitors`
monitors.enable = true;
monitors.monitors = [
{ name = "DP-2"; scale = 1.0; }
{ name = "DP-3"; scale = 2.0; vrr = true; }
{ name = "HDMI-A-1"; scale = 1.0; }
monitors.monitors = let
p1080 = { width = 1920; height = 1080; };
p2160 = { width = 3840; height = 2160; };
in [
{ name = "HDMI-A-1"; scale = 1.0; resolution = p1080; position = { x = -p1080.width; y = 0; }; }
{ name = "DP-2"; scale = 1.0; primary = true; resolution = p1080; position = { x = 0; y = 0; }; }
{ name = "DP-3"; scale = 2.0; vrr = true; resolution = p2160; position = { x = p1080.width; y = 0; }; }
];
};
software = {