From 67ce4819dd3c624084b2796ce5fef17031463b6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=BF=20corey=20=28they/them=29?= Date: Mon, 9 Mar 2026 21:59:16 -0700 Subject: [PATCH] fix(home): set yazi shellWrapperName to new default Adopts the new default behavior for programs.yazi.shellWrapperName by setting it to 'y' instead of the legacy default 'yy'. This silences the evaluation warning when rebuilding. Closes #272 --- modules/home/utilities.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/home/utilities.nix b/modules/home/utilities.nix index 27fee57..42aecf4 100644 --- a/modules/home/utilities.nix +++ b/modules/home/utilities.nix @@ -68,6 +68,7 @@ in { programs.yazi = { enable = true; enableZshIntegration = true; + shellWrapperName = "y"; }; })