nixos/hosts/desktop/monitors.nix

23 lines
378 B
Nix
Raw Normal View History

2025-02-18 20:17:57 +01:00
_: {
monitors = [
{
2025-04-15 20:13:15 +02:00
name = "DP-3";
2025-02-18 20:17:57 +01:00
resolution = "2560x1440";
refreshRate = 144;
2025-05-20 19:25:57 +02:00
position = "1920x0";
2025-02-18 20:17:57 +01:00
}
{
2025-04-01 21:13:44 +02:00
name = "DP-1";
2025-02-18 20:17:57 +01:00
resolution = "2560x1440";
refreshRate = 144;
2025-05-20 19:25:57 +02:00
position = "4480x0";
2025-02-18 20:17:57 +01:00
}
{
2025-05-20 19:25:57 +02:00
name = "HDMI-A-1";
2025-02-18 20:17:57 +01:00
resolution = "1920x1080";
refreshRate = 60;
2025-05-20 19:25:57 +02:00
position = "0x0";
2025-02-18 20:17:57 +01:00
}
];
}