From 73ff78f694229c28b87e785147e4f216ec7bc0d4 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sat, 7 Mar 2026 23:10:09 +0100 Subject: [PATCH] rewritten zsh (dendritic) --- .../applications/terminal_shell/zsh.nix | 40 ++++++++++--------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/Droidnix/generated/system/applications/terminal_shell/zsh.nix b/Droidnix/generated/system/applications/terminal_shell/zsh.nix index 58d10a503..efd4d518f 100644 --- a/Droidnix/generated/system/applications/terminal_shell/zsh.nix +++ b/Droidnix/generated/system/applications/terminal_shell/zsh.nix @@ -6,26 +6,28 @@ ... }: { - programs.zsh = { - enable = true; - enableCompletion = true; - dotDir = "${config.xdg.configHome}/zsh"; # Remove `config.` prefix - oh-my-zsh = { + home-manager.users.${user.username} = { + programs.zsh = { enable = true; - theme = ""; - plugins = [ - "git" - "sudo" - "extract" - "colored-man-pages" - "command-not-found" - "history" - "docker" - "kubectl" - ]; + enableCompletion = true; + dotDir = "${config.xdg.configHome}/zsh"; # Now correct: inside Home Manager scope + oh-my-zsh = { + enable = true; + theme = ""; + plugins = [ + "git" + "sudo" + "extract" + "colored-man-pages" + "command-not-found" + "history" + "docker" + "kubectl" + ]; + }; + autosuggestion.enable = true; + syntaxHighlighting.enable = true; + zshoptions = [ "AUTO_CD" ]; }; - #autosuggestion.enable = true; - syntaxHighlighting.enable = true; - zshoptions = [ "AUTO_CD" ]; }; }