12 lines
244 B
Text
12 lines
244 B
Text
|
#!/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
|