summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFritz Otlinghaus <fritz@otlinghaus.it>2021-01-31 14:59:54 +0100
committerFritz Otlinghaus <fritz@otlinghaus.it>2021-01-31 14:59:54 +0100
commit58ab3a3249555ce115b5c9d7eb25cd378719a89a (patch)
tree52704d130641291e6a14b64b7044f02434f30e30
parent96a2e56d2b32e99fc6ba164bd0fb5bcedcf2c678 (diff)
nixos/bind: update zone file type
-rw-r--r--nixos/modules/services/networking/bind.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/bind.nix b/nixos/modules/services/networking/bind.nix
index e1b997b6a868..e507e8ce9eeb 100644
--- a/nixos/modules/services/networking/bind.nix
+++ b/nixos/modules/services/networking/bind.nix
@@ -18,7 +18,7 @@ let
type = types.bool;
};
file = mkOption {
- type = types.str;
+ type = types.either types.str types.path;
description = "Zone file resource records contain columns of data, separated by whitespace, that define the record.";
};
masters = mkOption {