Centralize display configuration

This commit is contained in:
SebastianStork 2024-05-27 16:23:33 +02:00
parent 21fddbf8e5
commit 3697ebdd18
3 changed files with 5 additions and 6 deletions

View file

@ -37,6 +37,11 @@
"cliphist wipe && wl-paste --watch cliphist store" "cliphist wipe && wl-paste --watch cliphist store"
]; ];
monitor = [
"eDP-1,1920x1080@60,0x0,1"
"DP-2,2560x1440@144,0x0,1"
];
input = { input = {
kb_layout = "de"; kb_layout = "de";
kb_variant = "nodeadkeys"; kb_variant = "nodeadkeys";

View file

@ -6,7 +6,5 @@
home.packages = [ (wrappers.hypridle { lockOnSleep = true; }) ]; home.packages = [ (wrappers.hypridle { lockOnSleep = true; }) ];
myConfig.de.theme = "light"; myConfig.de.theme = "light";
wayland.windowManager.hyprland.settings.monitor = "eDP-1,1920x1080@60,0x0,1";
}; };
} }

View file

@ -17,9 +17,5 @@
]; ];
myConfig.de.theme = "dark"; myConfig.de.theme = "dark";
wayland.windowManager.hyprland.settings.monitor = "DP-2,2560x1440@144,0x0,1";
services.hypridle.settings.general.before_sleep_cmd = lib.mkForce "";
}; };
} }