gum.r: set weight to over 9000

we do this so we never route via gum, which tends to eat our packets and
makes it impossible to connect to other peers via gum.
This commit is contained in:
lassulus 2022-02-01 13:52:21 +01:00
parent af2faf3803
commit be042e3446
2 changed files with 3 additions and 3 deletions

View File

@ -219,6 +219,9 @@ in {
retiolum = {
via = internet;
ip4.addr = "10.243.0.213";
# never connect via gum (he eats your packets!)
tinc.weight = 9001;
aliases = [
"gum.r"
"backup.makefu.r"

View File

@ -28,9 +28,6 @@
'';
};
# never connect via gum (he eats our packets!)
krebs.hosts.gum.nets.retiolum.tinc.weight = 9000;
nixpkgs.config.packageOverrides = pkgs: {
tinc = pkgs.tinc_pre;
};