Regenerated

This commit is contained in:
2026-03-23 19:25:21 +00:00
parent 6b9fba2233
commit afb72e49cf
12 changed files with 30 additions and 459 deletions
+30
View File
@@ -398,6 +398,36 @@ 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, ... }:
{
programs.zsh = {
enable = true;
enableCompletion = true;
#autocd = true;
#dotDir = "${config.xdg.configHome}/zsh";
ohMyZsh = {
enable = true;
theme = "";
plugins = [
"git"
"sudo"
"extract"
"colored-man-pages"
"command-not-found"
"history"
"docker"
"kubectl"
];
};
#autosuggestion.enable = true;
syntaxHighlighting.enable = true;
};
}
#+END_SRC
* generated/modules/traveldroid/desktop
** =generated/modules/traveldroid/desktop/hyprland.nix=