Add zsh to homemanager

This commit is contained in:
2024-02-27 10:09:03 +01:00
parent 7410af0502
commit df883ff558
2 changed files with 11 additions and 0 deletions

10
home/zsh/default.nix Normal file
View File

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