2022-09-13 11:21:37 +00:00
|
|
|
{ lib ? import <nixpkgs/lib> }:
|
2022-08-24 20:24:33 +00:00
|
|
|
let
|
2022-09-13 11:21:37 +00:00
|
|
|
types = import ./types.nix { inherit lib; };
|
2022-08-29 09:45:19 +00:00
|
|
|
eval = cfg: lib.evalModules {
|
|
|
|
modules = lib.singleton {
|
|
|
|
# _file = toString input;
|
|
|
|
imports = lib.singleton { topLevel.devices = cfg; };
|
|
|
|
options = {
|
|
|
|
topLevel = lib.mkOption {
|
|
|
|
type = types.topLevel;
|
|
|
|
};
|
|
|
|
};
|
2022-08-25 13:08:26 +00:00
|
|
|
};
|
|
|
|
};
|
2022-08-29 09:45:19 +00:00
|
|
|
in {
|
|
|
|
types = types;
|
|
|
|
create = cfg: (eval cfg).config.topLevel.create;
|
|
|
|
mount = cfg: (eval cfg).config.topLevel.mount;
|
|
|
|
config = cfg: (eval cfg).config.topLevel.config;
|
2018-09-11 18:52:12 +00:00
|
|
|
}
|