flakelight/builtinModules/flakelightModules.nix

34 lines
817 B
Nix
Raw Permalink Normal View History

2023-08-27 07:57:59 +02:00
# flakelight -- Framework for simplifying flake setup
# Copyright (C) 2023 Archit Gupta <archit@accelbread.com>
# SPDX-License-Identifier: MIT
{ config, lib, flakelight, moduleArgs, ... }:
2023-08-27 07:57:59 +02:00
let
inherit (lib) mkOption mkIf mkMerge;
inherit (lib.types) lazyAttrsOf;
inherit (flakelight.types) module nullable optCallWith;
2023-08-27 07:57:59 +02:00
in
{
options = {
flakelightModule = mkOption {
type = nullable module;
2023-08-27 07:57:59 +02:00
default = null;
};
flakelightModules = mkOption {
type = optCallWith moduleArgs (lazyAttrsOf module);
2023-08-27 07:57:59 +02:00
default = { };
};
};
config = mkMerge [
(mkIf (config.flakelightModule != null) {
flakelightModules.default = config.flakelightModule;
})
(mkIf (config.flakelightModules != { }) {
outputs = { inherit (config) flakelightModules; };
})
];
}