nixos/hosts/desktop/monitors.nix
2026-01-19 17:44:37 +01:00

43 lines
707 B
Nix

_: {
monitors = [
{
name = "DP-2";
resolution = {
width = 2560;
height = 1440;
};
refreshRate = 170;
refreshRateNiri = 170.001;
position = {
x = 1920;
y = 0;
};
}
{
name = "DP-3";
resolution = {
width = 2560;
height = 1440;
};
refreshRate = 165;
refreshRateNiri = 165.000;
position = {
x = 4480;
y = 0;
};
}
{
name = "HDMI-A-1";
resolution = {
width = 1920;
height = 1080;
};
refreshRate = 60;
refreshRateNiri = 60.000;
position = {
x = 0;
y = 0;
};
}
];
}