Files
nixos/Droidnix/generated/system/applications/terminal_shell/zsh.nix
T
2026-03-07 23:07:58 +01:00

32 lines
542 B
Nix

{
config,
pkgs,
lib,
user,
...
}:
{
programs.zsh = {
enable = true;
enableCompletion = true;
dotDir = "${config.xdg.configHome}/zsh"; # Remove `config.` prefix
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;
zshoptions = [ "AUTO_CD" ];
};
}