blob: b89dea7b0a598a9b123c93538f68a5764036dff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
pkgs ? (import ../pkgs.nix).stable {},
config,
}: rec {
zshrc = pkgs.writeTextDir ".zshrc" ''
# Import before anything else, so that we have the full PATH available for
# everything following
. /etc/profile.d/nix-daemon.sh
# oh-my-zsh
export ZSH=${pkgs.oh-my-zsh}/share/oh-my-zsh
ZSH_CUSTOM=${./custom}
ZSH_THEME=mediocregopher
DISABLE_AUTO_UPDATE=true
plugins=(git vi-mode)
source $ZSH/oh-my-zsh.sh
export TERMINFO_DIRS=${pkgs.ncurses}/lib/terminfo:${./terminfo}
export BROWSER=${config.browser}
. ${./zshrc}
. ${./aliases}
'';
zsh = pkgs.writeScriptBin "zsh" ''
#!${pkgs.bash}/bin/bash
ZDOTDIR=${zshrc} exec ${pkgs.zsh}/bin/zsh "$@"
'';
}
|