From edaeeda26429aa3d25b9119f358075813bd9d4ba Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Sun, 27 Apr 2025 12:23:23 -0500 Subject: [PATCH] eza: default disable nushell integration again Reverting default behavior for this module again since the nushell integration causes a breaking behavior with the `ls` alias. --- modules/programs/eza.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/programs/eza.nix b/modules/programs/eza.nix index e71586113..7c8275b40 100644 --- a/modules/programs/eza.nix +++ b/modules/programs/eza.nix @@ -47,7 +47,10 @@ in enableIonIntegration = lib.hm.shell.mkIonIntegrationOption { inherit config; }; - enableNushellIntegration = lib.hm.shell.mkNushellIntegrationOption { inherit config; }; + enableNushellIntegration = lib.hm.shell.mkNushellIntegrationOption { inherit config; } // { + default = false; + example = true; + }; enableZshIntegration = lib.hm.shell.mkZshIntegrationOption { inherit config; };