borgmatic: allow lists in extraConfig

In particular, we should be able to specify `exclude_backups` in our
configuration.

Fixes #3489
This commit is contained in:
Matt Bryant 2022-12-12 21:50:23 -08:00 committed by Robert Helgesson
parent 263f6e4523
commit e412025fff
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
2 changed files with 8 additions and 2 deletions

View file

@ -20,7 +20,7 @@ let
};
extraConfigOption = mkOption {
type = with types; attrsOf (oneOf [ str bool path int ]);
type = with types; attrsOf (oneOf [ str bool path int (listOf str) ]);
default = { };
description = "Extra settings.";
};