summaryrefslogtreecommitdiff
path: root/custom
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2015-11-03 22:02:28 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2015-11-03 22:02:28 +0100
commit4fbde3a1382537080bffd2f788c127e5549ab056 (patch)
treea8550443d62a737a8629924776b53f0f40db1298 /custom
parentc12fb36e8fa3cb0f6c967af1980f9021c0aa85f4 (diff)
downloadnixos-4fbde3a1382537080bffd2f788c127e5549ab056.tar
nixos-4fbde3a1382537080bffd2f788c127e5549ab056.tar.gz
nixos-4fbde3a1382537080bffd2f788c127e5549ab056.tar.bz2
nixos-4fbde3a1382537080bffd2f788c127e5549ab056.tar.xz
nixos-4fbde3a1382537080bffd2f788c127e5549ab056.zip
tinc on ymir
Diffstat (limited to 'custom')
-rw-r--r--custom/tinc/yggdrasil.nix12
1 files changed, 3 insertions, 9 deletions
diff --git a/custom/tinc/yggdrasil.nix b/custom/tinc/yggdrasil.nix
index 54f47281..6b3bb5cc 100644
--- a/custom/tinc/yggdrasil.nix
+++ b/custom/tinc/yggdrasil.nix
@@ -1,9 +1,6 @@
1{ config, pkgs, ... }: 1{ config, pkgs, name, ip }:
2 2
3let 3{
4 name = "unknown";
5 ip = "xxx.xxx.xxx.xxx";
6in {
7 config.services.tinc = { 4 config.services.tinc = {
8 networks = { 5 networks = {
9 "yggdrasil" = { 6 "yggdrasil" = {
@@ -29,8 +26,5 @@ in {
29 26
30 config.networking.interfaces."tinc.yggdrasil" = { 27 config.networking.interfaces."tinc.yggdrasil" = {
31 useDHCP = false; 28 useDHCP = false;
32 ip4 = [ 29 } \\ ip;
33 { address = ip; prefixLength = 16; }
34 ];
35 };
36} 30}