hackens-org-configurations/setup-link-from-hostname

12 lines
258 B
Text
Raw Normal View History

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