Files
nixos/henrovnix_ok/home/dev/zsh.nix
T
2026-02-25 21:18:46 +01:00

36 lines
573 B
Nix

{
config,
pkgs,
lib,
flakeRoot,
...
}:
{
programs.zsh = {
enable = true;
enableCompletion = true;
autocd = true;
# Optional but recommended: keep zsh config in one dir (relative to $HOME)
dotDir = ".config/zsh";
oh-my-zsh = {
enable = true;
theme = "";
plugins = [
"git"
"sudo"
"extract"
"colored-man-pages"
"command-not-found"
"history"
"docker"
"kubectl"
];
};
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
};
}