nixos/home/zsh/default.nix

11 lines
225 B
Nix
Raw Normal View History

2024-02-27 09:09:03 +00:00
{ user, pkgs, ...}: {
home.packages = with pkgs; [ fd ];
programs.zsh = {
enable = true;
autocd = false;
enableAutosuggestions = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
};
}