From 1af4390d0579f2fa5915f7f75cbe32ed7239aa88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Wed, 29 Oct 2025 19:15:56 +0800 Subject: [PATCH] vanadium/display: fix xscreensaver hook event for autorandr It would run autorandr on the wrong event --- nix/configurations/vanadium/nixos/gui.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/configurations/vanadium/nixos/gui.nix b/nix/configurations/vanadium/nixos/gui.nix index b96b9a65..2bf33ca7 100644 --- a/nix/configurations/vanadium/nixos/gui.nix +++ b/nix/configurations/vanadium/nixos/gui.nix @@ -28,7 +28,7 @@ enable = true; hooks = { # Reset display setting on login - "UNBLANK" = '' + "RUN" = '' ${lib.getExe pkgs.autorandr} --change --ignore-lid ''; };