11 lines
225 B
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;
|
||
|
};
|
||
|
}
|