mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
38 lines
556 B
Nix
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;
|
|
}
|
|
];
|
|
}
|