nix/hardware/displays.nix
Tristan fddf319df9 update hyprland config on laptop
workspace switch hotkeys
resizing keys
moonlander default layout on laptop
add monitor rotation
remove scaling on laptop display
2023-09-06 12:52:46 +01:00

36 lines
846 B
Nix

{ config, ... }:
{
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 = "/home/tristan/Pictures/backgrounds/demonslayer.jpg";
}
{
name = "HDMI-A-1";
resolution = {x=1920;y=1080;freq=60;};
position = {
x = 1920;
y = 0;
};
wallpaper = "/home/tristan/Pictures/backgrounds/nier.jpg";
rotation = 1;
}
{
name = "eDP-1";
description = "BOE 0x07D8";
position = {
x = 0;
y = 1080;
};
wallpaper = "/home/tristan/Pictures/backgrounds/nix-wallpaper-watersplash.png";
}
];
};
}