From 8b0d2b1e51bcbd797863faad872417cbf866f26c Mon Sep 17 00:00:00 2001 From: reo101 Date: Sun, 28 Jul 2024 02:36:34 +0300 Subject: [PATCH] fix(configurations)!: correctly set `home-manager` `root` --- modules/flake/configurations.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/flake/configurations.nix b/modules/flake/configurations.nix index c666bfe..628b7d9 100644 --- a/modules/flake/configurations.nix +++ b/modules/flake/configurations.nix @@ -284,7 +284,7 @@ in ]) ({ system, host, configurationFiles, ... }: mkHomeManagerHost { - root = "${config.flake.homeManager.home-manager.dir}/${system}/${host}"; + root = "${config.flake.autoConfigurations.home-manager.dir}/${system}/${host}"; inherit system; hostname = host; })