diff options
author | lassulus <git@lassul.us> | 2023-07-08 14:35:36 +0200 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-07-08 14:35:36 +0200 |
commit | 8e23a28c590c058ac233bcec94e7c06ec1e06703 (patch) | |
tree | 5dda303dc628dba76358be190f7b9b229472f209 /krebs/3modules | |
parent | 4b799b4132057977f1b09acce22641be9090849a (diff) |
exim-smarthost: allow defining extraRouters in multiple locations
Diffstat (limited to 'krebs/3modules')
-rw-r--r-- | krebs/3modules/exim-smarthost.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/3modules/exim-smarthost.nix b/krebs/3modules/exim-smarthost.nix index 7b3dace6a..093ae2030 100644 --- a/krebs/3modules/exim-smarthost.nix +++ b/krebs/3modules/exim-smarthost.nix @@ -40,7 +40,7 @@ let }; extraRouters = mkOption { - type = types.nullOr types.str; + type = types.nullOr types.lines; default = null; }; |