1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

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.
This commit is contained in:
Austin Horstman 2025-04-27 12:23:23 -05:00
parent 2a264c17d5
commit edaeeda264

View file

@ -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; };