918c32299e
Allows to use it with other things, such as ... mine.shared.lib mine.shared.meta mine.shared.settings
8 lines
139 B
Nix
8 lines
139 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.mine.shared.settings = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.anything;
|
|
default = {};
|
|
};
|
|
}
|