mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
46177f0b30
This creates less headaches when importing nixos configuration and also fix some flake use cases.
21 lines
528 B
Nix
21 lines
528 B
Nix
{ lib ? import <nixpkgs/lib> }:
|
|
let
|
|
types = import ./types.nix { inherit lib; };
|
|
eval = cfg: lib.evalModules {
|
|
modules = lib.singleton {
|
|
# _file = toString input;
|
|
imports = lib.singleton { topLevel.devices = cfg; };
|
|
options = {
|
|
topLevel = lib.mkOption {
|
|
type = types.topLevel;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
in {
|
|
types = types;
|
|
create = cfg: (eval cfg).config.topLevel.create;
|
|
mount = cfg: (eval cfg).config.topLevel.mount;
|
|
config = cfg: (eval cfg).config.topLevel.config;
|
|
}
|