borgmatic: add missing support for output and hooks

Fixes #3760
This commit is contained in:
Damien Cassou 2023-06-18 07:57:41 +02:00 committed by Robert Helgesson
parent e8b5f8f9b3
commit ec58f8bed7
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
2 changed files with 18 additions and 0 deletions

View file

@ -134,6 +134,10 @@ let
extraConfig = extraConfigOption;
};
output = { extraConfig = extraConfigOption; };
hooks = { extraConfig = extraConfigOption; };
};
});
@ -168,6 +172,8 @@ let
} // config.retention.extraConfig;
consistency = removeNullValues { checks = config.consistency.checks; }
// config.consistency.extraConfig;
output = config.output.extraConfig;
hooks = config.hooks.extraConfig;
};
in {
meta.maintainers = [ maintainers.DamienCassou ];