From a753355c0fb88d1eec578e9c09ce96601a0fce26 Mon Sep 17 00:00:00 2001 From: Emma Thorpe Date: Tue, 16 Jun 2026 11:12:38 +0100 Subject: [PATCH] fix(shell.nix): correct home.activation typo The zcompdump reset was declared under home.actiVation (stray capital V), an unknown option that fails module evaluation, so the activation script never ran. Restore the correct home.activation attribute. --- lyrathorpe/home/shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lyrathorpe/home/shell.nix b/lyrathorpe/home/shell.nix index 633e0b6..a00770f 100644 --- a/lyrathorpe/home/shell.nix +++ b/lyrathorpe/home/shell.nix @@ -356,7 +356,7 @@ in # for every completion. Deleting it forces a fresh rebuild from the current # fpath on the next shell. compinit dumps to $ZDOTDIR (~/.config/zsh now); the # $HOME and cache paths are also swept to clear any legacy leftovers. - home.actiVation.resetZcompdump = lib.hm.dag.entryAfter [ "writeBoundary" ] '' + home.activation.resetZcompdump = lib.hm.dag.entryAfter [ "writeBoundary" ] '' $DRY_RUN_CMD rm -f \ "${config.xdg.configHome}"/zsh/.zcompdump* \ "$HOME"/.zcompdump* \