nixos-config/modules/deploy.nix
2023-03-17 00:27:32 -04:00

15 lines
297 B
Nix

{ lib, ... }:
{
options.deploy = {
sshPublicKeys = lib.mkOption {
type = lib.types.listOf lib.types.str;
};
targetHost = lib.mkOption {
type = lib.types.str;
};
tags = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ ];
};
};
}