1
1
forked from extern/flakelight
flakelight/builtinModules/templates.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

# 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;
inherit (lib.options) mergeEqualOption;
inherit (flakelight.types) nullable 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 = nullable (optCallWith moduleArgs template);
default = null;
};
templates = mkOption {
2024-01-15 11:53:17 +01:00
type = optCallWith moduleArgs
(lazyAttrsOf (optCallWith moduleArgs template));
default = { };
};
};
config = mkMerge [
(mkIf (config.template != null) {
templates.default = config.template;
})
(mkIf (config.templates != { }) {
outputs = { inherit (config) templates; };
})
];
}