4 lines
119 B
Bash
4 lines
119 B
Bash
# Check if nix command is available before trying to use flake
|
|
if command -v nix >/dev/null 2>&1; then
|
|
use flake
|
|
fi |