2023-08-27 07:48:57 +02:00
|
|
|
# flakelight -- Framework for simplifying flake setup
|
2023-08-25 06:14:55 +02:00
|
|
|
# Copyright (C) 2023 Archit Gupta <archit@accelbread.com>
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2024-01-15 04:17:50 +01:00
|
|
|
{ config, lib, flakelight, moduleArgs, ... }:
|
2023-08-25 06:14:55 +02:00
|
|
|
let
|
|
|
|
inherit (lib) mkOption mkIf mkMerge;
|
2024-02-07 09:54:03 +01:00
|
|
|
inherit (lib.types) lazyAttrsOf;
|
|
|
|
inherit (flakelight.types) module nullable optCallWith;
|
2023-08-25 06:14:55 +02:00
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
homeModule = mkOption {
|
2024-02-07 09:54:03 +01:00
|
|
|
type = nullable module;
|
2023-08-25 06:14:55 +02:00
|
|
|
default = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
homeModules = mkOption {
|
2024-01-15 04:17:50 +01:00
|
|
|
type = optCallWith moduleArgs (lazyAttrsOf module);
|
2023-08-25 06:14:55 +02:00
|
|
|
default = { };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkMerge [
|
|
|
|
(mkIf (config.homeModule != null) {
|
|
|
|
homeModules.default = config.homeModule;
|
|
|
|
})
|
|
|
|
|
|
|
|
(mkIf (config.homeModules != { }) {
|
|
|
|
outputs = { inherit (config) homeModules; };
|
|
|
|
})
|
|
|
|
];
|
|
|
|
}
|