nix/modules/home-manager/zsh.nix
2026-08-26 03:57:23 +02:00

13 lines
No EOL
238 B
Nix

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