23 lines
484 B
Nix
23 lines
484 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
plugins = [
|
|
{
|
|
name = "zsh-autosuggestions";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "zsh-users";
|
|
repo = "zsh-autosuggestions";
|
|
rev = "v0.7.1";
|
|
hash = "sha256-vpTyYq9ZgfgdDsWzjxVAE7FZH4MALMNZIFyEOBLm5Qo=";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
home.file.".zshrc".source = ./zsh/.zshrc;
|
|
home.file.".zsh.d" = {
|
|
source = ./zsh/.zsh.d;
|
|
recursive = true;
|
|
};
|
|
}
|