nixos/hosts/work/monitors.nix

39 lines
556 B
Nix
Raw Normal View History

2025-02-21 14:27:55 +01:00
_: {
monitors = [
{
name = "DP-5";
resolution = {
width = 1920;
height = 1200;
};
position = {
x = 1920;
y = 0;
};
2025-02-21 14:27:55 +01:00
}
{
name = "HDMI-A-5";
resolution = {
width = 1920;
height = 1080;
};
position = {
x = 0;
y = 0;
};
2025-02-21 14:27:55 +01:00
}
{
name = "DP-4";
resolution = {
width = 1920;
height = 1200;
};
position = {
x = 3840;
y = 0;
};
2025-02-21 14:27:55 +01:00
transform = 1;
}
];
}