blob: d17635506197f19690c0be3876a630f4d10b44d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
inputs:
{ config, lib, ... }:
with lib;
with builtins;
{
options.topology = {
mainVpn = {
interfaceName = mkOption {
type = types.str;
description = "Interface name of the main VPN";
};
subnet = mkOption {
type = types.str;
description = "CIDR subnet of the main VPN";
};
currentNodeIP = mkOption {
type = types.str;
description = "The current node's IP address in the VPN";
};
};
};
config = {
# Tinc configuration is in downstream repo
networking.firewall.allowedUDPPorts = [ 655 ];
networking.firewall.allowedTCPPorts = [ 655 ];
networking.hosts =
with builtins;
with lib;
let
networks = config.services.tinc.networks;
hosts = (flatten
(mapAttrsToList
(name: network: mapAttrsToList
(host: settings: {
host = "${host}.${name}.vpn";
addresses = map (subnet: subnet.address) settings.subnets;
})
network.hostSettings)
networks));
addresses =
zipAttrs
(flatten
(forEach hosts ({ host, addresses }:
(forEach addresses (address:
{ "${address}" = host; })))));
in
addresses;
};
}
|