nixos-config/modules/morph.nix

18 lines
238 B
Nix
Raw Normal View History

{ lib, ... }:
with lib.types;
{
options.sconfig.morph = {
sshPublicKeys = lib.mkOption {
type = listOf str;
default = [ ];
};
deployment = lib.mkOption {
type = attrs;
default = { };
};
};
}