nix/hardware/displays.nix

29 lines
500 B
Nix

{
displays = {
enable = true;
displays = {
"hp" = {
description = "HP Inc. HP 24x 1CR9500W9Q";
resolution = {
x = 1920;
y = 1080;
freq = 144;
};
position.x = 0;
position.y = 360;
};
"asus" = {
resolution = {
x = 1920;
y = 1080;
freq = 60;
};
position = {
x = 1920;
y = 0;
};
rotation = 1;
};
};
};
}