40 lines
620 B
Nix
40 lines
620 B
Nix
_: {
|
|
modules.system.hardware.monitors = {
|
|
DP-2 = {
|
|
resolution = {
|
|
x = 1920;
|
|
y = 1080;
|
|
};
|
|
scale = 1;
|
|
refreshRate = 60;
|
|
position = {
|
|
x = 0;
|
|
y = 0;
|
|
};
|
|
};
|
|
HDMI-A-2 = {
|
|
resolution = {
|
|
x = 1920;
|
|
y = 1080;
|
|
};
|
|
scale = 1;
|
|
refreshRate = 60;
|
|
position = {
|
|
x = 1920;
|
|
y = 0;
|
|
};
|
|
};
|
|
HDMI-A-1 = {
|
|
resolution = {
|
|
x = 1920;
|
|
y = 1080;
|
|
};
|
|
scale = 1;
|
|
refreshRate = 60;
|
|
position = {
|
|
x = 3840;
|
|
y = 0;
|
|
};
|
|
};
|
|
};
|
|
}
|