nixos-config/system/desktop/dnsmasq.nix
2019-10-24 02:24:33 +02:00

17 lines
317 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
services.dnsmasq = {
enable = true;
extraConfig = ''
${concatStringsSep "\n" (
flip mapAttrsToList config.module.cluster.services.tinc."private".hosts (name: attrs:
"address=/.${name}.private/${attrs.tincIp}"
)
)}
'';
};
}