nixos/hosts/desktop/monitors.nix
2025-08-23 18:42:54 +02:00

40 lines
609 B
Nix

_: {
monitors = [
{
name = "DP-1";
resolution = {
width = 2560;
height = 1440;
};
refreshRate = 144;
position = {
x = 1920;
y = 0;
};
}
{
name = "DP-3";
resolution = {
width = 2560;
height = 1440;
};
refreshRate = 144;
position = {
x = 4480;
y = 0;
};
}
{
name = "HDMI-A-1";
resolution = {
width = 1920;
height = 1080;
};
refreshRate = 60;
position = {
x = 0;
y = 0;
};
}
];
}