mirror of
https://github.com/nix-community/flakelight.git
synced 2025-08-15 17:42:35 +02:00
Reimplement framework using the module system
This commit is contained in:
33
builtinModules/nixosModules.nix
Normal file
33
builtinModules/nixosModules.nix
Normal file
@ -0,0 +1,33 @@
|
||||
# flakelite -- Framework for making flakes simple
|
||||
# Copyright (C) 2023 Archit Gupta <archit@accelbread.com>
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
{ config, lib, flakelite, ... }:
|
||||
let
|
||||
inherit (lib) mkOption mkIf mkMerge;
|
||||
inherit (lib.types) lazyAttrsOf nullOr;
|
||||
inherit (flakelite.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; };
|
||||
})
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user