de0070c4cf
This represents the first step in migrating `home.file` to support arbitrary absolute paths. This is to allow Home Manager to manage files anywhere, provided the user has sufficient privileges. For example, with this change the configuration home.file."test/one".text = "foo"; home.file."/test/two".text = "foo"; will result in the files "$HOME/test/one" and "/test/two", respectively. Note, a relative file name will still be relative `$HOME`. To allow a reasonable transition between the old and new path handling we introduce the notion of "generation directory layout version". The version is simply a file `version` within the generation directory containing a number indicating the version number. The version 0 (also implied if the version file is missing) indicates the legacy layout where managed file paths always are relative `$HOME`. Version 1 indicates the new layout where managed file paths are relative `/`.
101 lines
3.1 KiB
Bash
Executable file
101 lines
3.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
function setupVars() {
|
|
local nixStateDir="${NIX_STATE_DIR:-/nix/var/nix}"
|
|
local profilesPath="$nixStateDir/profiles/per-user/$USER"
|
|
local gcPath="$nixStateDir/gcroots/per-user/$USER"
|
|
|
|
declare -gr genProfilePath="$profilesPath/home-manager"
|
|
declare -gr newGenPath="@GENERATION_DIR@";
|
|
declare -gr newGenGcPath="$gcPath/current-home"
|
|
|
|
declare -g newGenLayoutVersion
|
|
if [[ -f $newGenPath/version ]]; then
|
|
newGenLayoutVersion=$(< "$newGenPath/version")
|
|
else
|
|
newGenLayoutVersion=0
|
|
fi
|
|
readonly newGenLayoutVersion
|
|
|
|
local greatestGenNum
|
|
greatestGenNum=$( \
|
|
nix-env --list-generations --profile "$genProfilePath" \
|
|
| tail -1 \
|
|
| sed -E 's/ *([[:digit:]]+) .*/\1/')
|
|
|
|
if [[ -n $greatestGenNum ]] ; then
|
|
oldGenNum=$greatestGenNum
|
|
newGenNum=$((oldGenNum + 1))
|
|
else
|
|
newGenNum=1
|
|
fi
|
|
|
|
if [[ -e $profilesPath/home-manager ]] ; then
|
|
declare -g oldGenPath oldGenLayoutVersion
|
|
oldGenPath="$(readlink -e "$profilesPath/home-manager")"
|
|
if [[ -f $oldGenPath/version ]]; then
|
|
oldGenLayoutVersion=$(< "$oldGenPath/version")
|
|
else
|
|
oldGenLayoutVersion=0
|
|
fi
|
|
readonly oldGenPath oldGenLayoutVersion
|
|
fi
|
|
|
|
$VERBOSE_ECHO "Sanity checking oldGenNum and oldGenPath"
|
|
if [[ -v oldGenNum && ! -v oldGenPath
|
|
|| ! -v oldGenNum && -v oldGenPath ]]; then
|
|
errorEcho "Invalid profile number and current profile values! These"
|
|
errorEcho "must be either both empty or both set but are now set to"
|
|
errorEcho " '${oldGenNum:-}' and '${oldGenPath:-}'"
|
|
errorEcho "If you don't mind losing previous profile generations then"
|
|
errorEcho "the easiest solution is probably to run"
|
|
errorEcho " rm $profilesPath/home-manager*"
|
|
errorEcho " rm $gcPath/current-home"
|
|
errorEcho "and trying home-manager switch again. Good luck!"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
if [[ -v VERBOSE ]]; then
|
|
export VERBOSE_ECHO=echo
|
|
export VERBOSE_ARG="--verbose"
|
|
else
|
|
export VERBOSE_ECHO=true
|
|
export VERBOSE_ARG=""
|
|
fi
|
|
|
|
echo "Starting home manager activation"
|
|
|
|
# Verify that we can connect to the Nix store and/or daemon. This will
|
|
# also create the necessary directories in profiles and gcroots.
|
|
$VERBOSE_ECHO "Sanity checking Nix"
|
|
nix-build --expr '{}' --no-out-link
|
|
|
|
setupVars
|
|
|
|
if [[ -v DRY_RUN ]] ; then
|
|
echo "This is a dry run"
|
|
export DRY_RUN_CMD=echo
|
|
else
|
|
$VERBOSE_ECHO "This is a live run"
|
|
export DRY_RUN_CMD=""
|
|
fi
|
|
|
|
if [[ -v VERBOSE ]]; then
|
|
echo -n "Using Nix version: "
|
|
nix-env --version
|
|
fi
|
|
|
|
$VERBOSE_ECHO "Activation variables:"
|
|
if [[ -v oldGenNum ]] ; then
|
|
$VERBOSE_ECHO " oldGenNum=$oldGenNum"
|
|
$VERBOSE_ECHO " oldGenPath=$oldGenPath"
|
|
else
|
|
$VERBOSE_ECHO " oldGenNum undefined (first run?)"
|
|
$VERBOSE_ECHO " oldGenPath undefined (first run?)"
|
|
fi
|
|
$VERBOSE_ECHO " newGenPath=$newGenPath"
|
|
$VERBOSE_ECHO " newGenNum=$newGenNum"
|
|
$VERBOSE_ECHO " newGenGcPath=$newGenGcPath"
|
|
$VERBOSE_ECHO " genProfilePath=$genProfilePath"
|