10 lines
230 B
Nix
10 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";
|
|
};
|
|
};
|
|
}
|