recipes.nix/modules/base.nix
Adithya Nair 367ee7bc9b
All checks were successful
Build and Push to Cachix / Push to Binary Cache (X86-64) (push) Successful in 4m11s
Build and Push to Cachix / Push to Binary Cache (aarch64) (push) Successful in 13m58s
add module for conduwuit
2024-11-24 20:25:19 +05:30

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";
};
};
}