mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
43 lines
707 B
Nix
43 lines
707 B
Nix
_: {
|
|
monitors = [
|
|
{
|
|
name = "DP-1";
|
|
resolution = {
|
|
width = 2560;
|
|
height = 1440;
|
|
};
|
|
refreshRate = 170;
|
|
refreshRateNiri = 170.001;
|
|
position = {
|
|
x = 1920;
|
|
y = 0;
|
|
};
|
|
}
|
|
{
|
|
name = "DP-3";
|
|
resolution = {
|
|
width = 2560;
|
|
height = 1440;
|
|
};
|
|
refreshRate = 165;
|
|
refreshRateNiri = 165.000;
|
|
position = {
|
|
x = 4480;
|
|
y = 0;
|
|
};
|
|
}
|
|
{
|
|
name = "HDMI-A-1";
|
|
resolution = {
|
|
width = 1920;
|
|
height = 1080;
|
|
};
|
|
refreshRate = 60;
|
|
refreshRateNiri = 60.000;
|
|
position = {
|
|
x = 0;
|
|
y = 0;
|
|
};
|
|
}
|
|
];
|
|
}
|