summaryrefslogtreecommitdiffstats
path: root/lib/nixosModules.nix
blob: ac9d12429b3f99921e7ddfddbff72434e9adce6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib
, pkgs
, self
, sources
, ...
}:
{
  options = {
    nixosModules = lib.mkOption {
      type = lib.types.attrsOf lib.types.deferredModule;
    };
    outputs.nixosModules = lib.mkOption {
      type = lib.types.attrsOf lib.types.deferredModule;
    };
  };
  config.outputs.nixosModules = self.config.nixosModules;
}