X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix.git;a=blobdiff_plain;f=modules%2Fprivate%2Fenvironment.nix;h=a8799d26e492ef821edd7aae8d194b1bcf94b82f;hp=6a2cea0b87c40e4c6fb6e584be7a69df609a2c87;hb=e43fdf341072e4a0150324196fc7af8f383860ec;hpb=6c95e93c85640e1fe544ed1b6a0b83e27725d0f0 diff --git a/modules/private/environment.nix b/modules/private/environment.nix index 6a2cea0..a8799d2 100644 --- a/modules/private/environment.nix +++ b/modules/private/environment.nix @@ -462,6 +462,22 @@ in }; }; }; + zrepl_backup = mkOption { + type = submodule { + options = { + ssh_key = mkOption { + description = "SSH key information"; + type = submodule { + options = { + public = mkOption { type = str; description = "Public part of the key"; }; + private = mkOption { type = lines; description = "Private part of the key"; }; + }; + }; + }; + mysql = mkMysqlOptions "Zrepl" {}; + }; + }; + }; rsync_backup = mkOption { description ='' Rsync backup configuration from controlled host @@ -545,6 +561,8 @@ in nrdp_tokens = mkOption { type = listOf str; description = "Tokens allowed to push status update"; }; slack_url = mkOption { type = str; description = "Slack webhook url to push status update"; }; slack_channel = mkOption { type = str; description = "Slack channel to push status update"; }; + netdata_aggregator = mkOption { type = str; description = "Url where netdata information should be sent"; }; + netdata_keys = mkOption { type = attrsOf str; description = "netdata host keys"; }; contacts = mkOption { type = attrsOf unspecified; description = "Contact dicts to fill naemon objects"; }; email_check = mkOption { description = "Emails services to check";