refactor(omz): move theme selection and untracked files to extraConfig

This commit is contained in:
2026-06-04 09:18:33 +02:00
parent 27fb719555
commit 2edc62ff13
+6 -6
View File
@@ -8,15 +8,14 @@
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
# theme will be set below depending on the shell
theme = "";
# make omz faster on large repositories
custom = "DISABLE_UNTRACKED_FILES_DIRTY=true";
# add git and agents as plugins # add git and agents as plugins
plugins = [ "git" "ssh-agent" "gpg-agent" ]; plugins = [ "git" "ssh-agent" "gpg-agent" ];
}; # everything here lands before `source $ZSH/oh-my-zsh.sh`
extraConfig = ''
# make omz faster on large repositories
DISABLE_UNTRACKED_FILES_DIRTY=true
# only display a fancy theme when glyphs are rendered # only display a fancy theme when glyphs are rendered
initContent = lib.mkOrder 550 ''
if [[ "$TERM" == "linux" || "$TERM" == "screen" ]]; then if [[ "$TERM" == "linux" || "$TERM" == "screen" ]]; then
ZSH_THEME="gentoo" ZSH_THEME="gentoo"
else else
@@ -24,6 +23,7 @@
fi fi
''; '';
}; };
};
# set important env vars # set important env vars
home.sessionVariables = { home.sessionVariables = {