1
1
forked from extern/flakelight
flakelight/builtinModules/templates.nix
2023-08-26 22:39:28 -07:00

43 lines
999 B
Nix

# flakelite -- Framework for making flakes simple
# Copyright (C) 2023 Archit Gupta <archit@accelbread.com>
# SPDX-License-Identifier: MIT
{ config, lib, ... }:
let
inherit (builtins) isPath isString;
inherit (lib) mkOption mkOptionType mkIf mkMerge;
inherit (lib.types) lazyAttrsOf nullOr;
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));
};
in
{
options = {
template = mkOption {
type = nullOr template;
default = null;
};
templates = mkOption {
type = lazyAttrsOf template;
default = { };
};
};
config = mkMerge [
(mkIf (config.template != null) {
templates.default = config.template;
})
(mkIf (config.templates != { }) {
outputs = { inherit (config) templates; };
})
];
}