Hello, I want to install and use grml-zsh-config in NixOS. I installed it by adding
programs.zsh = {
enable = true;
interactiveShellInit = "source ${pkgs.grml-zsh-config}/etc/zsh/zshrc";
promptInit = "";
};
to the /etc/nixos/configuration.nix
and now I can run it. But when I try to autocomplete the sudo
command, it doesn’t work.
For example typing sudo <TAB>
gives me only:
completing external command
env sh
Strangely, the sudo git <TAB>
work fine.
Any ideas how can I solve this problem?