inventory: clean up unused modules and submodule names
This commit is contained in:
@@ -288,7 +288,7 @@ in
|
|||||||
Global information about the clan.
|
Global information about the clan.
|
||||||
'';
|
'';
|
||||||
type = types.deferredModuleWith {
|
type = types.deferredModuleWith {
|
||||||
staticModules = [ ../inventoryClass/meta-interface.nix ];
|
staticModules = [ ../inventoryClass/meta.nix ];
|
||||||
};
|
};
|
||||||
default = { };
|
default = { };
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -115,7 +115,7 @@ in
|
|||||||
meta = lib.mkOption {
|
meta = lib.mkOption {
|
||||||
type = lib.types.submoduleWith {
|
type = lib.types.submoduleWith {
|
||||||
modules = [
|
modules = [
|
||||||
./meta-interface.nix
|
./meta.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -359,7 +359,7 @@ in
|
|||||||
inherit clanLib;
|
inherit clanLib;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
(import ./roles-interface.nix { })
|
(import ./role.nix { })
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,70 +0,0 @@
|
|||||||
{
|
|
||||||
flakeInputs,
|
|
||||||
clanLib,
|
|
||||||
}:
|
|
||||||
{ lib, config, ... }:
|
|
||||||
let
|
|
||||||
inspectModule =
|
|
||||||
inputName: moduleName: module:
|
|
||||||
let
|
|
||||||
eval = clanLib.evalService {
|
|
||||||
modules = [ module ];
|
|
||||||
prefix = [
|
|
||||||
inputName
|
|
||||||
"clan"
|
|
||||||
"modules"
|
|
||||||
moduleName
|
|
||||||
];
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
manifest = eval.config.manifest;
|
|
||||||
roles = lib.mapAttrs (_n: v: { inherit (v) description; }) eval.config.roles;
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.staticModules = lib.mkOption {
|
|
||||||
readOnly = true;
|
|
||||||
type = lib.types.raw;
|
|
||||||
|
|
||||||
apply = moduleSet: lib.mapAttrs (inspectModule "<clan-core>") moduleSet;
|
|
||||||
};
|
|
||||||
options.modulesPerSource = lib.mkOption {
|
|
||||||
# { sourceName :: { moduleName :: {} }}
|
|
||||||
readOnly = true;
|
|
||||||
type = lib.types.raw;
|
|
||||||
default =
|
|
||||||
let
|
|
||||||
inputsWithModules = lib.filterAttrs (_inputName: v: v ? clan.modules) flakeInputs;
|
|
||||||
in
|
|
||||||
lib.mapAttrs (
|
|
||||||
inputName: v: lib.mapAttrs (inspectModule inputName) v.clan.modules
|
|
||||||
) inputsWithModules;
|
|
||||||
};
|
|
||||||
options.moduleSchemas = lib.mkOption {
|
|
||||||
# { sourceName :: { moduleName :: { roleName :: Schema }}}
|
|
||||||
readOnly = true;
|
|
||||||
type = lib.types.raw;
|
|
||||||
default = lib.mapAttrs (
|
|
||||||
_inputName: moduleSet:
|
|
||||||
lib.mapAttrs (
|
|
||||||
_moduleName: module:
|
|
||||||
(clanLib.evalService {
|
|
||||||
modules = [ module ];
|
|
||||||
prefix = [ ];
|
|
||||||
}).config.result.api.schema
|
|
||||||
) moduleSet
|
|
||||||
) config.modulesPerSource;
|
|
||||||
};
|
|
||||||
options.templatesPerSource = lib.mkOption {
|
|
||||||
# { sourceName :: { moduleName :: {} }}
|
|
||||||
readOnly = true;
|
|
||||||
type = lib.types.raw;
|
|
||||||
default =
|
|
||||||
let
|
|
||||||
inputsWithTemplates = lib.filterAttrs (_inputName: v: v ? clan.templates) flakeInputs;
|
|
||||||
in
|
|
||||||
lib.mapAttrs (_inputName: v: lib.mapAttrs (_n: t: t) v.clan.templates) inputsWithTemplates;
|
|
||||||
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
_file = "docs flake-module";
|
_file = "docs flake-module";
|
||||||
imports = [
|
imports = [
|
||||||
{ _module.args = { inherit clanLib; }; }
|
{ _module.args = { inherit clanLib; }; }
|
||||||
(import ../../modules/inventoryClass/roles-interface.nix {
|
(import ../../modules/inventoryClass/role.nix {
|
||||||
nestedSettingsOption = mkOption {
|
nestedSettingsOption = mkOption {
|
||||||
type = types.raw;
|
type = types.raw;
|
||||||
description = ''
|
description = ''
|
||||||
|
|||||||
Reference in New Issue
Block a user