home-manager: expose all attributes returned by evalModules

This change brings the homeConfigurations output inline with how the
nixosConfiguration output presents its attributes.

The primary purpose is for exposing the graph attribute however there is
no downside to exposing the rest along with it to prevent needing to add
each desired attribute individually in the future if more are added.
This commit is contained in:
DaRacci
2025-12-14 21:58:05 +11:00
committed by Austin Horstman
parent 6cdf765eed
commit 3a92ffa192

View File

@@ -57,9 +57,8 @@ let
let
module = moduleChecks rawModule;
in
{
inherit (module) options config;
module
// {
activationPackage = module.config.home.activationPackage;
# For backwards compatibility. Please use activationPackage instead.