Initial commit w/ rudimentary visualization

This commit is contained in:
heyarne 2021-04-11 10:51:10 +02:00
commit 9abd736f13
5 changed files with 162 additions and 0 deletions

13
.envrc Normal file
View file

@ -0,0 +1,13 @@
if type lorri &>/dev/null; then
echo "direnv: using lorri from PATH ($(type -p lorri))"
eval "$(lorri direnv)"
else
# fall back to using direnv's builtin nix support
# to prevent bootstrapping problems.
use nix
fi
# source an additional user-specific .envrc in ./.envrc-local
if [ -e .envrc-local ]; then
source .envrc-local
fi