8 lines
126 B
Bash
8 lines
126 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
# Nix specific zsh configuration
|
||
|
if [ -x "$(command -v nix)" ]; then
|
||
|
source "$NIX_SHELL_PLUGIN"
|
||
|
fi
|
||
|
|