flakelight/builtinModules/nixosModules.nix
2023-08-26 22:48:57 -07:00

34 lines
729 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 = {
nixosModule = mkOption {
type = nullOr module;
default = null;
};
nixosModules = mkOption {
type = lazyAttrsOf module;
default = { };
};
};
config = mkMerge [
(mkIf (config.nixosModule != null) {
nixosModules.default = config.nixosModule;
})
(mkIf (config.nixosModules != { }) {
outputs = { inherit (config) nixosModules; };
})
];
}