28 lines
442 B
Nix
28 lines
442 B
Nix
{
|
|
monitors = [
|
|
{
|
|
name = "DP-3";
|
|
width = 2560;
|
|
height = 1440;
|
|
refreshRate = 240;
|
|
bitDepth = 10;
|
|
workspace = "1";
|
|
primary = true;
|
|
}
|
|
{
|
|
name = "eDP-1";
|
|
width = 1920;
|
|
height = 1200;
|
|
refreshRate = 60;
|
|
workspace = "1";
|
|
primary = false;
|
|
}
|
|
];
|
|
theme = {
|
|
background = {
|
|
lockscreen = "wallpaper_2";
|
|
desktop = "wallpaper_1";
|
|
};
|
|
};
|
|
}
|