mirror of
https://github.com/zaphar/sheetsui.git
synced 2025-07-21 20:39:47 -04:00
13 lines
205 B
Plaintext
13 lines
205 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
if has lorri; then
|
||
|
echo Using lorri
|
||
|
eval "$(lorri direnv)"
|
||
|
elif has nix; then
|
||
|
echo Using flake fallback
|
||
|
use flake
|
||
|
else
|
||
|
# noop
|
||
|
echo unsupported direnv configuration
|
||
|
fi
|