Fediversity/deployment/check/common/data-model-options.nix

15 lines
181 B
Nix

{
lib,
...
}:
let
inherit (lib) types;
in
{
options = {
host = lib.mkOption {
type = types.str;
description = "name of the host to deploy to";
};
};
}