From 3a92ffa1924bd8180982d316845c7fd082143f65 Mon Sep 17 00:00:00 2001 From: DaRacci Date: Sun, 14 Dec 2025 21:58:05 +1100 Subject: [PATCH] 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. --- modules/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/default.nix b/modules/default.nix index 9bc43df1c..10e6e7a37 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -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.