summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/home.nix b/home.nix
index fcaf46c..ea3619a 100644
--- a/home.nix
+++ b/home.nix
@@ -80,13 +80,13 @@
# fixes hotpot cannot be found error after updates
home.activation = {
- clearHotpotCache = home-manager.lib.hm.dag.entryAfter ["writeBoundary"] ''
- HOTPOT_CACHE="${config.xdg.cacheHome}/nvim/hotpot"
- if [[ -d "$HOTPOT_CACHE" ]]; then
- $DRY_RUN_CMD rm -rf "$VERBOSE_ARG" "$HOTPOT_CACHE"
- fi
- '';
-};
+ clearHotpotCache = home-manager.lib.hm.dag.entryAfter ["writeBoundary"] ''
+ HOTPOT_CACHE="${config.xdg.cacheHome}/nvim/hotpot"
+ if [[ -d "$HOTPOT_CACHE" ]]; then
+ $DRY_RUN_CMD rm -rf "$VERBOSE_ARG" "$HOTPOT_CACHE"
+ fi
+ '';
+ };
xdg.configFile.nvim = {
source = config.lib.file.mkOutOfStoreSymlink ./neovim;