From 6e99a380cd89ff7b2ab280ffab4851703d293241 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 17 Feb 2024 17:14:27 -0600 Subject: [PATCH] fix(nix-hm): reference dots dir by full path --- config/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default.nix b/config/default.nix index 67e23ccf..113aad95 100644 --- a/config/default.nix +++ b/config/default.nix @@ -1,6 +1,6 @@ { self, pkgs, config, inputs, lib, ... }: let - dotsDir = "${self}/dots"; + dotsDir = "${config.home.homeDirectory}/.config/home-manager/dots"; softLinkDots = dir: (builtins.listToAttrs (map (n: { name = "${dir + "/" + n}";