2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2011-04-13 16:09:02 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2011-04-13 16:09:02 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.dnsmasq;
|
|
|
|
dnsmasq = pkgs.dnsmasq;
|
|
|
|
|
2012-11-12 17:58:48 +01:00
|
|
|
dnsmasqConf = pkgs.writeText "dnsmasq.conf" ''
|
2014-07-03 00:59:35 +02:00
|
|
|
${optionalString cfg.resolveLocalQueries ''
|
|
|
|
conf-file=/etc/dnsmasq-conf.conf
|
|
|
|
resolv-file=/etc/dnsmasq-resolv.conf
|
|
|
|
''}
|
|
|
|
${cfg.extraConfig}
|
2012-11-12 17:58:48 +01:00
|
|
|
'';
|
|
|
|
|
2011-04-13 16:09:02 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-04-13 16:09:02 +02:00
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-04-13 16:09:02 +02:00
|
|
|
services.dnsmasq = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
2011-04-19 15:37:31 +02:00
|
|
|
default = false;
|
2011-04-13 16:09:02 +02:00
|
|
|
description = ''
|
|
|
|
Whether to run dnsmasq.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-07-03 00:59:35 +02:00
|
|
|
resolveLocalQueries = mkOption {
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Whether dnsmasq should resolve local queries (i.e. add 127.0.0.1 to
|
|
|
|
/etc/resolv.conf)
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2011-04-13 16:09:02 +02:00
|
|
|
servers = mkOption {
|
|
|
|
default = [];
|
|
|
|
example = [ "8.8.8.8" "8.8.4.4" ];
|
|
|
|
description = ''
|
|
|
|
The parameter to dnsmasq -S.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-07-03 00:59:35 +02:00
|
|
|
|
|
|
|
|
2012-11-12 17:58:48 +01:00
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.string;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Extra configuration directives that should be added to
|
|
|
|
<literal>dnsmasq.conf</literal>
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2011-04-13 16:09:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.services.dnsmasq.enable {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2014-07-03 00:59:35 +02:00
|
|
|
environment.systemPackages = [ dnsmasq ]
|
|
|
|
++ (if cfg.resolveLocalQueries then [ pkgs.openresolv ] else []);
|
2011-04-13 16:09:02 +02:00
|
|
|
|
2014-07-03 00:59:35 +02:00
|
|
|
services.dbus.packages = [ dnsmasq ];
|
2011-04-13 16:09:02 +02:00
|
|
|
|
2014-07-03 00:59:35 +02:00
|
|
|
users.extraUsers = singleton
|
|
|
|
{ name = "dnsmasq";
|
|
|
|
uid = config.ids.uids.dnsmasq;
|
|
|
|
description = "Dnsmasq daemon user";
|
|
|
|
home = "/var/empty";
|
2011-04-13 16:09:02 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2014-07-03 00:59:35 +02:00
|
|
|
systemd.services.dnsmasq = {
|
|
|
|
description = "dnsmasq daemon";
|
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "dbus";
|
|
|
|
BusName = "uk.org.thekelleys.dnsmasq";
|
|
|
|
ExecStartPre = "${dnsmasq}/bin/dnsmasq --test";
|
|
|
|
ExecStart = "${dnsmasq}/bin/dnsmasq -k --enable-dbus --user=dnsmasq -C ${dnsmasqConf}";
|
|
|
|
ExecReload = "${dnsmasq}/bin/kill -HUP $MAINPID";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2011-04-13 16:09:02 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-04-13 16:09:02 +02:00
|
|
|
}
|