1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-28 21:21:02 +01:00

home-manager: fix broken path reference

This commit is contained in:
Dan Xin 2025-06-23 16:50:21 +08:00 committed by Austin Horstman
parent 4c9e99e8e8
commit 4a8f993c45

View file

@ -29,6 +29,6 @@ in
}; };
config = lib.mkIf (cfg.enable && !config.submoduleSupport.enable) { config = lib.mkIf (cfg.enable && !config.submoduleSupport.enable) {
home.packages = [ (pkgs.callPackage ../../home-manager { inherit (cfg) path; }) ]; home.packages = [ (pkgs.callPackage ../../../home-manager { inherit (cfg) path; }) ];
}; };
} }