1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-19 21:18:30 +02:00

home-manager: make sure all files are uninstalled

This forces the `home.file` option to be completely empty when
switching to the uninstall configuration. This is necessary to guard
against files are added by default in Home Manager, such as
`$XDG_CACHE_HOME/.keep`.
This commit is contained in:
Robert Helgesson 2020-02-15 19:26:23 +01:00
parent 7b7499dd70
commit e1153f4d2e
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -375,7 +375,7 @@ function doUninstall() {
y|Y)
echo "Switching to empty Home Manager configuration..."
HOME_MANAGER_CONFIG="$(mktemp --tmpdir home-manager.XXXXXXXXXX)"
echo "{}" > "$HOME_MANAGER_CONFIG"
echo "{ lib, ... }: { home.file = lib.mkForce {}; }" > "$HOME_MANAGER_CONFIG"
doSwitch
rm "$HOME_MANAGER_CONFIG"
$DRY_RUN_CMD rm $VERBOSE_ARG -r \