2013-08-05 00:03:42 +02:00
|
|
|
# NixOS module for iodine, ip over dns daemon
|
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2013-08-05 00:03:42 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2013-08-05 00:03:42 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.iodined;
|
|
|
|
|
|
|
|
iodinedUser = "iodined";
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
### configuration
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.iodined = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.uniq types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Enable iodine, ip over dns daemon";
|
|
|
|
};
|
|
|
|
|
|
|
|
client = mkOption {
|
|
|
|
type = types.uniq types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Start iodine in client mode";
|
|
|
|
};
|
|
|
|
|
|
|
|
ip = mkOption {
|
2013-10-30 11:02:04 +01:00
|
|
|
type = types.str;
|
2013-08-05 00:03:42 +02:00
|
|
|
default = "";
|
|
|
|
description = "Assigned ip address or ip range";
|
|
|
|
example = "172.16.10.1/24";
|
|
|
|
};
|
|
|
|
|
|
|
|
domain = mkOption {
|
2013-10-30 11:02:04 +01:00
|
|
|
type = types.str;
|
2013-08-05 00:03:42 +02:00
|
|
|
default = "";
|
|
|
|
description = "Domain or subdomain of which nameservers point to us";
|
|
|
|
example = "tunnel.mydomain.com";
|
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = mkOption {
|
2013-10-30 11:02:04 +01:00
|
|
|
type = types.str;
|
2013-08-05 00:03:42 +02:00
|
|
|
default = "";
|
|
|
|
description = "Additional command line parameters";
|
|
|
|
example = "-P mysecurepassword -l 192.168.1.10 -p 23";
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
### implementation
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [ pkgs.iodine ];
|
|
|
|
boot.kernelModules = [ "tun" ];
|
|
|
|
|
|
|
|
systemd.services.iodined = {
|
|
|
|
description = "iodine, ip over dns daemon";
|
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig.ExecStart = "${pkgs.iodine}/sbin/iodined -f -u ${iodinedUser} ${cfg.extraConfig} ${cfg.ip} ${cfg.domain}";
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
users.extraUsers = singleton {
|
|
|
|
name = iodinedUser;
|
|
|
|
uid = config.ids.uids.iodined;
|
|
|
|
description = "Iodine daemon user";
|
|
|
|
};
|
|
|
|
users.extraGroups.iodined.gid = config.ids.gids.iodined;
|
|
|
|
|
|
|
|
assertions = [{ assertion = if !cfg.client then cfg.ip != "" else true;
|
|
|
|
message = "cannot start iodined without ip set";}
|
|
|
|
{ assertion = cfg.domain != "";
|
|
|
|
message = "cannot start iodined without domain name set";}];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|