nixos/hosts/desktop/monitors.nix

41 lines
609 B
Nix
Raw Normal View History

2025-02-18 20:17:57 +01:00
_: {
monitors = [
{
name = "DP-1";
resolution = {
width = 2560;
height = 1440;
};
2025-02-18 20:17:57 +01:00
refreshRate = 144;
position = {
x = 1920;
y = 0;
};
2025-02-18 20:17:57 +01:00
}
{
name = "DP-3";
resolution = {
width = 2560;
height = 1440;
};
2025-02-18 20:17:57 +01:00
refreshRate = 144;
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;
position = {
x = 0;
y = 0;
};
2025-02-18 20:17:57 +01:00
}
];
}