Add iodined, ip over dns daemon
This commit is contained in:
parent
ab4472e70e
commit
d0cb70cefb
@ -77,8 +77,9 @@ in
|
|||||||
nginx = 60;
|
nginx = 60;
|
||||||
chrony = 61;
|
chrony = 61;
|
||||||
smtpd = 63;
|
smtpd = 63;
|
||||||
smtpq = 64;
|
smtpq = 64;
|
||||||
supybot = 65;
|
supybot = 65;
|
||||||
|
iodined = 66;
|
||||||
|
|
||||||
# When adding a uid, make sure it doesn't match an existing gid.
|
# When adding a uid, make sure it doesn't match an existing gid.
|
||||||
|
|
||||||
@ -139,8 +140,9 @@ in
|
|||||||
nginx = 60;
|
nginx = 60;
|
||||||
systemd-journal = 62;
|
systemd-journal = 62;
|
||||||
smtpd = 63;
|
smtpd = 63;
|
||||||
smtpq = 64;
|
smtpq = 64;
|
||||||
supybot = 65;
|
supybot = 65;
|
||||||
|
iodined = 66;
|
||||||
|
|
||||||
# When adding a gid, make sure it doesn't match an existing uid.
|
# When adding a gid, make sure it doesn't match an existing uid.
|
||||||
|
|
||||||
|
@ -154,6 +154,7 @@
|
|||||||
./services/networking/gvpe.nix
|
./services/networking/gvpe.nix
|
||||||
./services/networking/hostapd.nix
|
./services/networking/hostapd.nix
|
||||||
./services/networking/ifplugd.nix
|
./services/networking/ifplugd.nix
|
||||||
|
./services/networking/iodined.nix
|
||||||
./services/networking/ircd-hybrid/default.nix
|
./services/networking/ircd-hybrid/default.nix
|
||||||
./services/networking/minidlna.nix
|
./services/networking/minidlna.nix
|
||||||
./services/networking/nat.nix
|
./services/networking/nat.nix
|
||||||
|
87
modules/services/networking/iodined.nix
Normal file
87
modules/services/networking/iodined.nix
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
# NixOS module for iodine, ip over dns daemon
|
||||||
|
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
with pkgs.lib;
|
||||||
|
|
||||||
|
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 {
|
||||||
|
type = types.uniq types.string;
|
||||||
|
default = "";
|
||||||
|
description = "Assigned ip address or ip range";
|
||||||
|
example = "172.16.10.1/24";
|
||||||
|
};
|
||||||
|
|
||||||
|
domain = mkOption {
|
||||||
|
type = types.uniq types.string;
|
||||||
|
default = "";
|
||||||
|
description = "Domain or subdomain of which nameservers point to us";
|
||||||
|
example = "tunnel.mydomain.com";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraConfig = mkOption {
|
||||||
|
type = types.uniq types.string;
|
||||||
|
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";}];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user