Working on termonal stuff

This commit is contained in:
2026-03-07 23:21:51 +01:00
parent f215d14817
commit 3a55272ec1
@@ -5,12 +5,17 @@
user,
...
}:
let
zshConfigDir = "${config.xdg.configHome}/zsh"; # Define outside programs.zsh
in
{
home-manager.users.${user.username} = {
programs.zsh = {
enable = true;
enableCompletion = true;
dotDir = "${config.xdg.configHome}/zsh"; # Now correct: inside Home Manager scope
dotDir = zshConfigDir; # Use the variable here
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
oh-my-zsh = {
enable = true;
theme = "";
@@ -18,16 +23,20 @@
"git"
"sudo"
"extract"
"colored-man-pages"
"colored-man-lpages"
"command-not-found"
"history"
"docker"
"kubectl"
];
};
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
#zshoptions = [ "AUTO_CD" ];
};
# Set Zsh options (e.g., AUTO_CD) in .zshrc
xdg.configFile."zsh/.zshrc".text = lib.concatStringsSep "\n" [
"setopt AUTO_CD"
"setopt CORRECT"
"setopt INTERACTIVE_COMMENTS"
];
};
}