mirror of
https://github.com/nix-community/flakelight.git
synced 2025-02-12 23:49:22 +01:00
Add options for flakelight modules
This commit is contained in:
parent
b8d9538c58
commit
981351cfe2
33
builtinModules/flakelightModules.nix
Normal file
33
builtinModules/flakelightModules.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
# flakelight -- Framework for simplifying flake setup
|
||||||
|
# Copyright (C) 2023 Archit Gupta <archit@accelbread.com>
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
{ config, lib, flakelight, ... }:
|
||||||
|
let
|
||||||
|
inherit (lib) mkOption mkIf mkMerge;
|
||||||
|
inherit (lib.types) lazyAttrsOf nullOr;
|
||||||
|
inherit (flakelight.types) module;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
flakelightModule = mkOption {
|
||||||
|
type = nullOr module;
|
||||||
|
default = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
flakelightModules = mkOption {
|
||||||
|
type = lazyAttrsOf module;
|
||||||
|
default = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkMerge [
|
||||||
|
(mkIf (config.flakelightModule != null) {
|
||||||
|
flakelightModules.default = config.flakelightModule;
|
||||||
|
})
|
||||||
|
|
||||||
|
(mkIf (config.flakelightModules != { }) {
|
||||||
|
outputs = { inherit (config) flakelightModules; };
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user