Files
nixos-config/modules/home/zsh.nix

21 lines
363 B
Nix
Raw Normal View History

2025-09-13 02:38:36 -04:00
{
...
}:
{
programs = {
direnv = {
enable = true;
enableZshIntegration = true;
};
zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
sessionVariables = {
SSH_AUTH_SOCK = "/home/eclypse/.bitwarden-ssh-agent.sock";
};
2025-09-13 02:38:36 -04:00
};
};
}