1
1
forked from extern/flakelight
flakelight/builtinModules/homeModules.nix
Archit Gupta 589ee5ba7a Make direct and auto-loaded configuration consistent
Many attributes can take moduleArgs when auto-loaded in order to
facilitate access to them from other files. Those same attributes could
not take moduleArgs when included directly, which was inconsistent.

With this change, all attributes that could take moduleArgs when
auto-loaded can now always do so. Auto-loading no longer needs special
cases.
2024-01-14 19:35:54 -08:00

34 lines
771 B
Nix

# flakelight -- Framework for simplifying flake setup
# Copyright (C) 2023 Archit Gupta <archit@accelbread.com>
# SPDX-License-Identifier: MIT
{ config, lib, flakelight, moduleArgs, ... }:
let
inherit (lib) mkOption mkIf mkMerge;
inherit (lib.types) lazyAttrsOf nullOr;
inherit (flakelight.types) module optCallWith;
in
{
options = {
homeModule = mkOption {
type = nullOr module;
default = null;
};
homeModules = mkOption {
type = optCallWith moduleArgs (lazyAttrsOf module);
default = { };
};
};
config = mkMerge [
(mkIf (config.homeModule != null) {
homeModules.default = config.homeModule;
})
(mkIf (config.homeModules != { }) {
outputs = { inherit (config) homeModules; };
})
];
}