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

18 lines
392 B
Nix

{ lib, pkgs, ... }:
{
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
};
home.shell.enableZshIntegration = true;
home.file.".zsh.d" = {
source = ./zsh/.zsh.d;
recursive = true;
};
home.file.".zshrc.o4".source = ./zsh/.zshrc;
programs.zsh.initContent = "source $HOME/.zshrc.o4";
}