diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-05-23 03:36:43 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-05-23 03:36:43 +0200 |
commit | 46b7e62708f01eaefef78341819643eeceea8130 (patch) | |
tree | 16920a3d69d6ce492124724910f8ffd86a8d11df /modules/private | |
parent | f9914beb086a06e290287f299ae2c2026924a780 (diff) | |
download | Nix-46b7e62708f01eaefef78341819643eeceea8130.tar.gz Nix-46b7e62708f01eaefef78341819643eeceea8130.tar.zst Nix-46b7e62708f01eaefef78341819643eeceea8130.zip |
Add check_command for backups
Diffstat (limited to 'modules/private')
-rw-r--r-- | modules/private/environment.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/private/environment.nix b/modules/private/environment.nix index 5d74ab5..ec9bf29 100644 --- a/modules/private/environment.nix +++ b/modules/private/environment.nix | |||
@@ -450,6 +450,7 @@ in | |||
450 | type = attrsOf (submodule { | 450 | type = attrsOf (submodule { |
451 | options = { | 451 | options = { |
452 | keep = mkOption { type = int; description = "Number of backups to keep"; }; | 452 | keep = mkOption { type = int; description = "Number of backups to keep"; }; |
453 | check_command = mkOption { type = str; description = "command to check if backup needs to be done"; default = "backup"; }; | ||
453 | login = mkOption { type = str; description = "Login to connect to host"; }; | 454 | login = mkOption { type = str; description = "Login to connect to host"; }; |
454 | port = mkOption { type = str; default = "22"; description = "Port to connect to host"; }; | 455 | port = mkOption { type = str; default = "22"; description = "Port to connect to host"; }; |
455 | host = mkOption { type = str; description = "Host to connect to"; }; | 456 | host = mkOption { type = str; description = "Host to connect to"; }; |