feat(adrastea): explicitly set hyprlock monitor

This commit is contained in:
Youwen Wu 2024-12-14 02:44:19 -08:00
parent 63ce16d446
commit c308976fe7
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, lib, ... }:
{ {
wayland.windowManager.hyprland.settings.monitor = pkgs.lib.mkForce [ wayland.windowManager.hyprland.settings.monitor = pkgs.lib.mkForce [
# "eDP-1,2560x1440@165,0x0,1.6" # "eDP-1,2560x1440@165,0x0,1.6"
@ -16,4 +16,5 @@
]; ];
programs.waybar.settings.mainBar.output = "HDMI-A-1"; programs.waybar.settings.mainBar.output = "HDMI-A-1";
programs.hyprlock.settings.background.monitor = lib.mkForce "HDMI-A-1";
} }