Run nix flake update

Change-Id: I3e104a5763859f6b3af14ada05109b088b91cdda
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/647
Reviewed-by: Samuel Shuert <coded@clicks.codes>
Tested-by: Samuel Shuert <coded@clicks.codes>
diff --git a/modules/home/shell/default.nix b/modules/home/shell/default.nix
index 2924d6d..5226576 100644
--- a/modules/home/shell/default.nix
+++ b/modules/home/shell/default.nix
@@ -101,7 +101,8 @@
 
     programs.eza = lib.mkIf config.chimera.shell.replacements.eza.enable {
       enable = true;
-      enableAliases = true;
+      enableZshIntegration = config.chimera.shell.zsh.enable;
+      enableBashIntegration = config.chimera.shell.bash.enable;
     };
 
     programs.ripgrep = lib.mkIf config.chimera.shell.replacements.ripgrep.enable {
diff --git a/modules/home/shell/zsh/default.nix b/modules/home/shell/zsh/default.nix
index b2491c9..693da7b 100644
--- a/modules/home/shell/zsh/default.nix
+++ b/modules/home/shell/zsh/default.nix
@@ -33,7 +33,8 @@
   config = lib.mkIf config.chimera.shell.zsh.enable {
     programs.zsh = {
       enable = true;
-      enableAutosuggestions = true;
+      autosuggestion.enable = true;
+      syntaxHighlighting.enable = true;
       enableCompletion = true;
       autocd = true;
       defaultKeymap = "emacs";