1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 05:47:29 +02:00

home-manager: add extendModules attribute

The `home-manager.lib.homeManagerConfiguration` function now has an
additional attribute that can be used to extend a Home Manager
configuration with additional modules outside the project tree.

It works similar to the result of `lib.nixosSystem` from Nixpkgs
This commit is contained in:
GrizzlT 2024-01-24 11:30:39 +01:00 committed by Mikilio
parent 3249809b33
commit 17b2a3a2a7
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F

View file

@ -28,17 +28,20 @@ let
specialArgs = { modulesPath = builtins.toString ./.; } // extraSpecialArgs;
};
module = showWarnings (let
failed = collectFailed rawModule.config;
moduleChecks = raw:
showWarnings (let
failed = collectFailed raw.config;
failedStr = concatStringsSep "\n" (map (x: "- ${x}") failed);
in if failed == [ ] then
rawModule
raw
else
throw ''
Failed assertions:
${failedStr}'');
withExtraAttrs = rawModule:
let module = moduleChecks rawModule;
in {
inherit (module) options config;
@ -52,4 +55,7 @@ in {
(filter (a: a.condition) rawModule.config.news.entries);
inherit (module._module.args) pkgs;
}
extendModules = args: withExtraAttrs (rawModule.extendModules args);
};
in withExtraAttrs rawModule