nixos/home/zsh/default.nix

11 lines
225 B
Nix

{ user, pkgs, ...}: {
home.packages = with pkgs; [ fd ];
programs.zsh = {
enable = true;
autocd = false;
enableAutosuggestions = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
};
}