From 75a987720f52ae1e5cb844c060c35743acc24c21 Mon Sep 17 00:00:00 2001 From: Minh Tran <33189614+minhtrancccp@users.noreply.github.com> Date: Fri, 28 Mar 2025 12:43:48 +0700 Subject: [PATCH] refactor(bat): replace `initExtra` with `initContent` for `zsh` per https://github.com/nix-community/home-manager/pull/6715#discussion_r2017898157 Co-authored-by: Austin Horstman --- modules/programs/bat.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/bat.nix b/modules/programs/bat.nix index 295d0fcf7..e69c20e51 100644 --- a/modules/programs/bat.nix +++ b/modules/programs/bat.nix @@ -198,7 +198,7 @@ in { }; zsh = mkIf (!config.programs.fish.enable && config.programs.zsh.enable) { - initExtra = shellInit "zsh"; + initContent = shellInit "zsh"; }; };