hackens-org-configurations/setupLinkFromHostname

12 lines
244 B
Text
Raw Normal View History

#!/usr/bin/env bash
echo "Setting up $(hostname)"
HOST_FOLDER=hosts
HOSTNAME=$(hostname)
CONFIG=$HOST_FOLDER/$HOSTNAME.nix
if [[ -n $(cmp --silent configuration.nix "$CONFIG" || echo "different") ]]
then
ln -s "$CONFIG" configuration.nix
fi