nix/modules/home-manager/zsh.nix
2026-08-28 02:20:28 +02:00

16 lines
No EOL
305 B
Nix

{ username, pkgs, ... }:
{
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
theme = "nanotech";
};
initContent = ''
${pkgs.pfetch}/bin/pfetch
'';
sessionVariables = {
SSH_AUTH_SOCK = "/home/${username}/.bitwarden-ssh-agent.sock";
};
};
}