dotfiles/nix/hosts/alymac/zsh.nix

12 lines
157 B
Nix

{ dotfiles, ... }:
{
programs.zsh = {
enable = true;
initExtra = ''
export GPG_TTY=$(tty)
source ${dotfiles}/zsh/zshrc
'';
};
}