My Nix Configuration
1_: { 2 sessions = [ 3 # Chrismoos 4 { 5 multi = true; 6 multihop = false; 7 gracefulRestart = true; 8 name = "chrismoos"; 9 neigh = "fe80::1588%wg42_chris"; 10 as = "4242421588"; 11 link = "1"; 12 } 13 # Kioubit 14 { 15 multi = true; 16 multihop = false; 17 gracefulRestart = true; 18 name = "kioubit"; 19 neigh = "fe80::ade0%wg42_kioubit"; 20 as = "4242423914"; 21 link = "3"; 22 } 23 # IEDON 24 { 25 multi = true; 26 multihop = false; 27 gracefulRestart = true; 28 name = "ideon"; 29 neigh = "fe80::2189:e8%wg42_iedon"; 30 as = "4242422189"; 31 link = "5"; 32 } 33 # SUNNET 34 { 35 multi = true; 36 multihop = false; 37 gracefulRestart = true; 38 name = "sunnet"; 39 neigh = "fe80::3088:193%wg42_sunnet"; 40 as = "4242423088"; 41 link = "3"; 42 } 43 # C4TG1RL5 44 { 45 multi = true; 46 multihop = false; 47 gracefulRestart = true; 48 name = "c4tg1rl5"; 49 neigh = "fe80::4242%wg42_catgirls"; 50 as = "4242421411"; 51 link = "6"; 52 } 53 # Potat0 54 { 55 multi = true; 56 multihop = false; 57 gracefulRestart = true; 58 name = "potato"; 59 neigh = "fe80::1816%wg42_potato"; 60 as = "4242421816"; 61 link = "2"; 62 } 63 # Uffsalot-v6 64 { 65 multi = false; 66 v4 = false; 67 v6 = true; 68 multihop = false; 69 gracefulRestart = true; 70 name = "uffsalot_v6"; 71 neigh = "fe80::780%wg42_uffsalot"; 72 as = "4242420780"; 73 link = "5"; 74 } 75 # Uffsalot-v6 76 { 77 multi = false; 78 v4 = true; 79 v6 = false; 80 multihop = false; 81 gracefulRestart = true; 82 name = "uffsalot_v4"; 83 neigh = "172.20.191.129"; 84 as = "4242420780"; 85 link = "5"; 86 } 87 # Bandura 88 { 89 multi = true; 90 multihop = false; 91 gracefulRestart = true; 92 name = "bandura"; 93 neigh = "fe80::2926%wg42_bandura"; 94 as = "4242422923"; 95 link = "4"; 96 } 97 # Bluemedia 98 { 99 multi = true; 100 multihop = false; 101 gracefulRestart = true; 102 name = "bluemedia"; 103 neigh = "fe80::42:3343:20:1%wg42_bluemedia"; 104 as = "4242423343"; 105 link = "5"; 106 } 107 ]; 108 extraConfig = ""; 109}