monitor crimes
This commit is contained in:
parent
bf89ee073a
commit
97110919cd
2 changed files with 49 additions and 15 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue