forked from DGNum/infrastructure
13 lines
304 B
Bash
13 lines
304 B
Bash
|
ENDPOINT=${ATTIC_ENDPOINT:-https://cachix.dgnum.eu}
|
||
|
|
||
|
if [ "$1" == "off" ]; then
|
||
|
echo "Please edit $XDG_CONFIG_DIRS/nix/nix.conf to remove the cache"
|
||
|
elif [ "$1" == "on" ]; then
|
||
|
@attic@/bin/attic login dgnum "$ENDPOINT"
|
||
|
@attic@/bin/attic use dgnum:infra
|
||
|
else
|
||
|
echo "Help:"
|
||
|
echo " cache {on|off}"
|
||
|
fi
|
||
|
|