a0b892daea
Just installing the zsh package leaves out several of the autocomplete packages that the programs.zsh includes.
18 lines
245 B
Nix
18 lines
245 B
Nix
{ config, pkgs, ... }: {
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
cmake
|
|
htop
|
|
jq
|
|
killall
|
|
ripgrep
|
|
silver-searcher
|
|
tmux
|
|
unzip
|
|
zsh
|
|
];
|
|
}
|