Files
flake/home/modules/zsh.nix
T
2026-01-18 20:04:45 +08:00

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;
};
}