diff options
| author | Alejandro Soto <alejandro@34project.org> | 2025-07-06 17:18:44 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2025-07-06 17:18:44 -0600 |
| commit | 863aaa665b18175909d27d853db9e65fcec06677 (patch) | |
| tree | 149a47d9fcbd09fde3e68bff986f3eb6c094d2a5 /home/baseline | |
| parent | c3ea4dbc08c240f31556bf65977af2a123cb5bdb (diff) | |
home: fix 25.05 deprecation warnings
Diffstat (limited to '')
| -rw-r--r-- | home/baseline/zsh.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/home/baseline/zsh.nix b/home/baseline/zsh.nix index 8dd169c..48fdd4a 100644 --- a/home/baseline/zsh.nix +++ b/home/baseline/zsh.nix @@ -6,9 +6,11 @@ in config = { programs.zsh = { enable = true; + autosuggestion.enable = true; syntaxHighlighting.enable = true; - initExtra = import ./zshrc.nix pkgs; + + initContent = lib.mkAfter (import ./zshrc.nix pkgs); }; }; } |
