12 lines
418 B
Bash
12 lines
418 B
Bash
#!/bin/sh
|
|
|
|
# first time
|
|
if [[ ! -d $(nix store add-path --name source --dry-run .) ]]; then
|
|
nix store add-path --name source .
|
|
fi
|
|
|
|
# shellcheck disable=SC1090
|
|
. "$(fetchurl "https://raw.githubusercontent.com/paisano-nix/direnv/bd36f51b9d566d8a36e230dab638abf3074625c3/lib" "sha256-IgQhKK7UHL1AfCUntJO2KCaIDJQotRnK2qC4Daxk+wI=")"
|
|
|
|
use envreload "//repo/userShells/${USER}" //repo/userShells/default //repo/userShells
|