recipes.nix/modules/base.nix

11 lines
230 B
Nix
Raw Normal View History

2024-11-24 18:35:22 +05:30
{ lib, ... }: {
options.recipes = {
dataDir = lib.mkOption {
type = lib.types.str;
default = null;
example = "/mnt/data";
description = "A directory where other recipes may store data";
};
};
}