22 lines
475 B
Nix
22 lines
475 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
displays = {
|
|
enable = true;
|
|
displays = [
|
|
{
|
|
name = "DP-1";
|
|
description = "HP Inc. HP 24x 1CR9500W9Q";
|
|
resolution = { x = 1920; y = 1080; freq = 144; };
|
|
position = "0x0";
|
|
}
|
|
{
|
|
name = "eDP-1";
|
|
description = "BOE 0x07D8";
|
|
scaling = 1.2;
|
|
position = "0x1080";
|
|
wallpaper = "/home/tristan/Pictures/backgrounds/nix-wallpaper-watersplash.png";
|
|
}
|
|
];
|
|
};
|
|
}
|