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

15 lines
194 B
Nix

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