summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-31 15:14:02 +0100
committerGitHub <noreply@github.com>2021-01-31 15:14:02 +0100
commit4bb7e4fb634d071ec55bb25884ff2778466e2d11 (patch)
tree31ecbab875120968a8aa9ec7848d27aa003a247a /nixos
parent75281960c002a253bf2d67df74bcf07ef0acad62 (diff)
parent58ab3a3249555ce115b5c9d7eb25cd378719a89a (diff)
Merge pull request #111470 from helsinki-systems/bind2
nixos/bind: update zone file type
Diffstat (limited to 'nixos')
-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 {