3864986c18
subrepo: subdir: "lib" merged: "0df131b5" upstream: origin: "git@github.com:nix-community/nixpkgs.lib.git" branch: "master" commit: "0df131b5" git-subrepo: version: "0.4.5" origin: "???" commit: "???"
22 lines
403 B
Nix
22 lines
403 B
Nix
{ lib, ... }: {
|
|
options.submodule = lib.mkOption {
|
|
default = {};
|
|
type = lib.types.submoduleWith {
|
|
modules = [ ({ options, ... }: {
|
|
options.value = lib.mkOption {};
|
|
|
|
options.internalFiles = lib.mkOption {
|
|
default = options.value.files;
|
|
};
|
|
})];
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
{
|
|
_file = "the-file.nix";
|
|
submodule.value = 10;
|
|
}
|
|
];
|
|
}
|