mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
15 lines
308 B
Nix
15 lines
308 B
Nix
{ lib, ... }:
|
|
{
|
|
options.deploy = {
|
|
sshPublicKeys = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
};
|
|
ssh = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.str;
|
|
};
|
|
tags = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [ ];
|
|
};
|
|
};
|
|
}
|