nichts/hosts/temperance/hardware/monitors.nix

41 lines
644 B
Nix
Raw Normal View History

_: {
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 = 1920;
y = 0;
};
};
};
}