From 4837920fbc03fd820d5ce4cb1f453046a542a210 Mon Sep 17 00:00:00 2001 From: Alexandre1a Date: Thu, 8 Jan 2026 08:34:10 +0100 Subject: [PATCH] Added fastfetch as a ZSH start command --- modules/home-manager/shell.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/modules/home-manager/shell.nix b/modules/home-manager/shell.nix index 261c561..9d67882 100644 --- a/modules/home-manager/shell.nix +++ b/modules/home-manager/shell.nix @@ -6,15 +6,12 @@ package = pkgs.zsh; enableCompletion = true; autocd = true; - loginExtra = "echo Hello World!"; + loginExtra = "fastfetch --logo mac2_small -s DateTime:Battery:CPU:GPU:Memory:Host:Media"; autosuggestion = { enable = true; - strategy = "match_prev_cmd"; - }; - - dirHashes = { - code = "$\{config.home.homeDirectory}/Developer"; + strategy = [ "match_prev_cmd" ]; + highlight = "fg=grey, underline"; }; history = { @@ -40,8 +37,8 @@ "fzf" "gh" "kitty" - "zsh-autosuggestions" - "zsh-syntax-highlighting" + #"zsh-autosuggestions" + #"zsh-syntax-highlighting" ]; }; };