2020-04-28 16:49:08 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.dnsmasq;
|
|
|
|
mapA = f: attrs: with builtins; attrValues (mapAttrs f attrs);
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.dnsmasq.enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2024-04-14 21:02:32 +00:00
|
|
|
description = "Whether to enable DNSmasq.";
|
2020-04-28 16:49:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
services.dnsmasq.package = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = pkgs.dnsmasq;
|
|
|
|
defaultText = "pkgs.dnsmasq";
|
2024-04-14 21:02:32 +00:00
|
|
|
description = "This option specifies the dnsmasq package to use.";
|
2020-04-28 16:49:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
services.dnsmasq.bind = mkOption {
|
2020-04-28 17:06:45 +00:00
|
|
|
type = types.str;
|
2020-04-28 16:49:08 +00:00
|
|
|
default = "127.0.0.1";
|
2024-04-14 21:02:32 +00:00
|
|
|
description = "This option specifies the interface on which DNSmasq will listen.";
|
2020-04-28 16:49:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
services.dnsmasq.port = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
default = 53;
|
2024-04-14 21:02:32 +00:00
|
|
|
description = "This option specifies port on which DNSmasq will listen.";
|
2020-04-28 16:49:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
services.dnsmasq.addresses = mkOption {
|
|
|
|
type = types.attrs;
|
|
|
|
default = {};
|
2024-04-14 21:02:32 +00:00
|
|
|
description = "List of domains that will be redirected by the DNSmasq.";
|
2021-10-23 13:05:52 +00:00
|
|
|
example = literalExpression ''
|
2020-04-28 20:43:13 +00:00
|
|
|
{ localhost = "127.0.0.1"; }
|
|
|
|
'';
|
2020-04-28 16:49:08 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
|
|
|
|
launchd.daemons.dnsmasq = {
|
|
|
|
serviceConfig.ProgramArguments = [
|
|
|
|
"${cfg.package}/bin/dnsmasq"
|
|
|
|
"--listen-address=${cfg.bind}"
|
|
|
|
"--port=${toString cfg.port}"
|
|
|
|
"--keep-in-foreground"
|
|
|
|
] ++ (mapA (domain: addr: "--address=/${domain}/${addr}") cfg.addresses);
|
|
|
|
|
|
|
|
serviceConfig.KeepAlive = true;
|
|
|
|
serviceConfig.RunAtLoad = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.etc = builtins.listToAttrs (builtins.map (domain: {
|
|
|
|
name = "resolver/${domain}";
|
|
|
|
value = {
|
|
|
|
enable = true;
|
2021-01-28 12:59:11 +00:00
|
|
|
text = ''
|
|
|
|
port ${toString cfg.port}
|
|
|
|
nameserver ${cfg.bind}
|
|
|
|
'';
|
2020-04-28 16:49:08 +00:00
|
|
|
};
|
|
|
|
}) (builtins.attrNames cfg.addresses));
|
|
|
|
};
|
|
|
|
}
|