11 lines
230 B
Nix
11 lines
230 B
Nix
|
{ lib, ... }: {
|
||
|
options.recipes = {
|
||
|
dataDir = lib.mkOption {
|
||
|
type = lib.types.str;
|
||
|
default = null;
|
||
|
example = "/mnt/data";
|
||
|
description = "A directory where other recipes may store data";
|
||
|
};
|
||
|
};
|
||
|
}
|