mirror of
https://github.com/nix-community/flakelight.git
synced 2024-11-22 07:23:11 +01:00
34 lines
764 B
Nix
34 lines
764 B
Nix
|
# 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; };
|
||
|
})
|
||
|
];
|
||
|
}
|