refactor(homeModules/cli): idomaticity

This commit is contained in:
Mohammad Rafiq 2025-05-20 12:25:29 +08:00
parent feff604e8f
commit 84bacb23f0
No known key found for this signature in database
7 changed files with 22 additions and 25 deletions

View file

@ -0,0 +1,15 @@
{ config, lib, ... }:
{
config = lib.mkIf (config.cli.shell == "zsh") {
home.sessionVariables.SHELL = "zsh";
programs.zsh = {
enable = true;
enableVteIntegration = true;
syntaxHighlighting.enable = true;
history.share = true;
history.size = 10000;
history.ignoreDups = true;
history.ignoreSpace = true;
};
};
}