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

38 lines
556 B
Nix

_: {
monitors = [
{
name = "DP-5";
resolution = {
width = 1920;
height = 1200;
};
position = {
x = 1920;
y = 0;
};
}
{
name = "HDMI-A-5";
resolution = {
width = 1920;
height = 1080;
};
position = {
x = 0;
y = 0;
};
}
{
name = "DP-4";
resolution = {
width = 1920;
height = 1200;
};
position = {
x = 3840;
y = 0;
};
transform = 1;
}
];
}