nichts/hosts/hermit/hardware/monitors.nix

29 lines
425 B
Nix
Raw Permalink Normal View History

_: {
modules.system.hardware.monitors = {
eDP-1 = {
2025-01-08 15:05:14 +01:00
resolution = {
x = 1920;
y = 1080;
};
scale = 1;
refreshRate = 60;
position = {
x = 1920;
y = 0;
};
};
DP-3 = {
resolution = {
x = 1920;
y = 1080;
};
scale = 1;
refreshRate = 60;
position = {
x = 0;
y = 0;
};
};
};
}