Regenerated

This commit is contained in:
2026-03-24 20:50:20 +00:00
parent ad772d947e
commit f2fb89eca4
24 changed files with 19 additions and 873 deletions
+19 -30
View File
@@ -486,39 +486,28 @@ in
** =generated/modules/traveldroid/apps/zsh.nix=
This sets up the zsh in the terminal
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/apps/zsh.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, ... }:
programs.zsh = {
enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
autosuggestions.enable = true; # zsh-autosuggestions
historySubstringSearch.enable = true; # zsh-history-substring-search
{
#################################
# Zsh configuration
#################################
programs.zsh = {
ohMyZsh = {
enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
# Oh My Zsh integration
ohMyZsh = {
enable = true;
theme = ""; # default theme, you can override per user
plugins = [
"git"
"sudo"
"extract"
"colored-man-pages"
"command-not-found"
"history"
"docker"
"kubectl"
];
};
# Uncomment if you want additional features
# autosuggestion.enable = true;
# autocd = true;
# dotDir = "${config.xdg.configHome}/zsh";
theme = "agnoster"; # or any theme you like
plugins = [
"git"
"sudo"
"extract"
"colored-man-pages"
"command-not-found"
"history"
"docker"
"kubectl"
];
};
}
};
#+END_SRC
* generated/modules/traveldroid/desktop