nixos-config/modules/deploy.nix

18 lines
232 B
Nix
Raw Normal View History

2021-12-27 18:21:16 +00:00
{ lib, ... }:
with lib.types;
{
options.sconfig = {
sshPublicKeys = lib.mkOption {
type = listOf str;
default = [ ];
};
deployment = lib.mkOption {
type = attrs;
default = { };
};
};
}