blob: f5684d08590f2461e5d22718ce9b8b4b9da7f639 (
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
58
59
60
61
62
63
64
65
66
67
|
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.yggdrasilTinc;
in {
options = {
services.yggdrasilTinc = {
enable = mkEnableOption "yggdrasil tinc network";
connect = mkOption {
default = true;
type = types.bool;
description = ''
Connect to central server
'';
};
useDNS = mkOption {
default = true;
type = types.bool;
description = ''
Use heimdallr as primary dns server
'';
};
name = mkOption {
default = config.networking.hostName;
type = types.str;
description = ''
Node identifier
'';
};
interfaceConfig = mkOption {
default = {};
description = ''
Additional configuration for the generated network interface
'';
};
};
};
config = mkIf cfg.enable {
services.customTinc.networks."yggdrasil" = {
inherit (cfg) name interfaceConfig;
debugLevel = 2;
hosts = import ../../yggdrasil/hosts.nix;
interfaceType = "tap";
extraConfig = ''
Mode = switch
PingTimeout = 30
${optionalString cfg.connect "ConnectTo = ymir"}
'';
scripts = {
"tinc-up" = ''
#!${pkgs.stdenv.shell}
set -e
MACFILE="/var/db/$NETNAME.mac"
[ -e $MACFILE ] && ${pkgs.iproute}/bin/ip link set dev $INTERFACE address `cat $MACFILE` || cat /sys/class/net/$INTERFACE/address >$MACFILE
'';
};
};
};
}
|