From d4d7769e517fc14a0d2af903a011e916c8d1fbfe Mon Sep 17 00:00:00 2001 From: John Ogle Date: Wed, 18 Feb 2026 18:02:44 -0800 Subject: [PATCH] fix(zix790prors): set Sway output to 164.9Hz for AW3423DWF The monitor refresh rate was only configured via xrandr session commands, which have no effect on Wayland/Sway sessions, leaving it at 60Hz. Co-Authored-By: Claude Opus 4.6 --- flake.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b92fce4..02b552d 100644 --- a/flake.nix +++ b/flake.nix @@ -183,7 +183,16 @@ modules = nixosModules ++ [ ./machines/zix790prors/configuration.nix { - home-manager.users.johno = import ./home/home-desktop.nix; + home-manager.users.johno = { + imports = [ ./home/home-desktop.nix ]; + home.roles.i3_sway.extraSwayConfig = { + output = { + "DP-1" = { + mode = "3440x1440@164.900Hz"; + }; + }; + }; + }; home-manager.extraSpecialArgs = { inherit system; }; } ];