summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-12-19 14:10:13 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2017-12-19 14:10:13 +0100
commit800ccbb293ef3b8d4a920609f07407e1a0b66c03 (patch)
treec1f06d43bb8d59a469bef16f4ace0ec1132a8410
parentc46d6fca14db97b58cc140bc45572887da5d7195 (diff)
downloadnixos-800ccbb293ef3b8d4a920609f07407e1a0b66c03.tar
nixos-800ccbb293ef3b8d4a920609f07407e1a0b66c03.tar.gz
nixos-800ccbb293ef3b8d4a920609f07407e1a0b66c03.tar.bz2
nixos-800ccbb293ef3b8d4a920609f07407e1a0b66c03.tar.xz
nixos-800ccbb293ef3b8d4a920609f07407e1a0b66c03.zip
-rw-r--r--ymir.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/ymir.nix b/ymir.nix
index fcf8ab69..5b159e83 100644
--- a/ymir.nix
+++ b/ymir.nix
@@ -25,7 +25,7 @@ let
25 "ymir.nights.email" "nights.email" "www.nights.email" 25 "ymir.nights.email" "nights.email" "www.nights.email"
26 ]; 26 ];
27 27
28 dnsZones = listToAttrs (flatten (mapAttrsToList dnsZone (readDir ./custom/ymir/zones))); 28 dnsZones = listToAttrs (flatten (mapAttrsToList dnsZone (builtins.readDir ./custom/ymir/zones)));
29 dnsZone = fName: type: optional (type == "regular" || type == "symlink") (nameValuePair (dnsZoneName fName) (readFile (./custom/ymir/zones + fName))); 29 dnsZone = fName: type: optional (type == "regular" || type == "symlink") (nameValuePair (dnsZoneName fName) (readFile (./custom/ymir/zones + fName)));
30 dnsZoneName = fName: concatStringsSep "." (reverseList (splitString "." (removeSuffix ".soa" fName))); 30 dnsZoneName = fName: concatStringsSep "." (reverseList (splitString "." (removeSuffix ".soa" fName)));
31in rec { 31in rec {