Regenerated

This commit is contained in:
2026-03-24 11:40:29 +00:00
parent 3b60099f77
commit 8450dd8db9
22 changed files with 38 additions and 778 deletions
+38
View File
@@ -483,6 +483,44 @@ in
}
#+END_SRC
** =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, ... }:
{
#################################
# Zsh configuration
#################################
programs.zsh = {
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";
};
}
#+END_SRC
* generated/modules/traveldroid/desktop
** =generated/modules/traveldroid/desktop/fonts.nix=