33 lines
625 B
Nix
33 lines
625 B
Nix
{...}: {
|
|
displays = {
|
|
enable = true;
|
|
displays = [
|
|
{
|
|
name = "DP-1";
|
|
description = "HP Inc. HP 24x 1CR9500W9Q";
|
|
resolution = {
|
|
x = 1920;
|
|
y = 1080;
|
|
freq = 144;
|
|
};
|
|
position.x = 0;
|
|
position.y = 0;
|
|
wallpaper = ../images/demonslayer.png;
|
|
}
|
|
{
|
|
name = "HDMI-A-1";
|
|
resolution = {
|
|
x = 1920;
|
|
y = 1080;
|
|
freq = 60;
|
|
};
|
|
position = {
|
|
x = 1920;
|
|
y = 0;
|
|
};
|
|
wallpaper = ../images/nier2.jpg;
|
|
rotation = 1;
|
|
}
|
|
];
|
|
};
|
|
}
|