forked from emily/nixfiles
14 lines
344 B
Nix
14 lines
344 B
Nix
{ lib, ... }: with lib; {
|
|
options.kyouma.deployment = {
|
|
tags = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [];
|
|
description = "colmena deployment tags";
|
|
};
|
|
targetHost = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
description = "colmena target host override";
|
|
};
|
|
};
|
|
}
|