nixos-config/system/desktop/dnsmasq.nix

17 lines
317 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ 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}"
)
)}
'';
};
}