mirror of
https://github.com/nix-community/flakelight.git
synced 2024-11-22 07:23:11 +01:00
589ee5ba7a
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.
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
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 (builtins) isPath isString;
|
|
inherit (lib) mkOption mkOptionType mkIf mkMerge;
|
|
inherit (lib.types) lazyAttrsOf nullOr;
|
|
inherit (lib.options) mergeEqualOption;
|
|
inherit (flakelight.types) optCallWith;
|
|
|
|
template = mkOptionType {
|
|
name = "template";
|
|
description = "template definition";
|
|
descriptionClass = "noun";
|
|
check = x: (x ? path) && (isPath x.path) &&
|
|
(x ? description) && (isString x.description) &&
|
|
((! x ? welcomeText) || (isString x.welcomeText));
|
|
merge = mergeEqualOption;
|
|
};
|
|
in
|
|
{
|
|
options = {
|
|
template = mkOption {
|
|
type = nullOr (optCallWith moduleArgs template);
|
|
default = null;
|
|
};
|
|
|
|
templates = mkOption {
|
|
type = optCallWith moduleArgs (lazyAttrsOf template);
|
|
default = { };
|
|
};
|
|
};
|
|
|
|
config = mkMerge [
|
|
(mkIf (config.template != null) {
|
|
templates.default = config.template;
|
|
})
|
|
|
|
(mkIf (config.templates != { }) {
|
|
outputs = { inherit (config) templates; };
|
|
})
|
|
];
|
|
}
|