mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
13 lines
208 B
Nix
13 lines
208 B
Nix
{ dotfiles, ... }:
|
|
|
|
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
initExtra = ''
|
|
export GPG_TTY=$(tty)
|
|
source ${dotfiles}/zsh/zshrc
|
|
|
|
export PATH="$PATH:$HOME/.npm-packages/bin"
|
|
'';
|
|
};
|
|
}
|