nixos/hosts/desktop/monitors.nix

44 lines
707 B
Nix
Raw Normal View History

2025-02-18 20:17:57 +01:00
_: {
monitors = [
{
2026-01-19 17:44:37 +01:00
name = "DP-2";
resolution = {
width = 2560;
height = 1440;
};
2025-09-30 07:41:10 +02:00
refreshRate = 170;
refreshRateNiri = 170.001;
position = {
x = 1920;
y = 0;
};
2025-02-18 20:17:57 +01:00
}
{
2026-01-19 17:44:37 +01:00
name = "DP-3";
resolution = {
width = 2560;
height = 1440;
};
2025-09-30 07:41:10 +02:00
refreshRate = 165;
refreshRateNiri = 165.000;
position = {
x = 4480;
y = 0;
};
2025-02-18 20:17:57 +01:00
}
{
2025-05-20 19:25:57 +02:00
name = "HDMI-A-1";
resolution = {
width = 1920;
height = 1080;
};
2025-02-18 20:17:57 +01:00
refreshRate = 60;
2025-09-30 07:41:10 +02:00
refreshRateNiri = 60.000;
position = {
x = 0;
y = 0;
};
2025-02-18 20:17:57 +01:00
}
];
}