diff --git a/hosts/fondue/networking.nix b/hosts/fondue/networking.nix index ad6cf83..c159468 100644 --- a/hosts/fondue/networking.nix +++ b/hosts/fondue/networking.nix @@ -13,6 +13,7 @@ extraHosts = '' 10.100.0.2 apricot 10.100.0.3 winter + 10.100.0.4 strawberry ''; }; } diff --git a/modules/system/wireguard.nix b/modules/system/wireguard.nix index ecce0c8..c0a49d9 100644 --- a/modules/system/wireguard.nix +++ b/modules/system/wireguard.nix @@ -12,6 +12,10 @@ let publicKey = "6nVhazYdmC15A/nke9VrqIg3sOBVOmqj4GEsyBq7MVo="; allowedIPs = [ "10.100.0.3/32" ]; }; + strawberry = { + publicKey = "Fkcp/VSN4Dkhly8V4hskF4lnDviA7VZHCnWf7OliFCg="; + allowedIPs = [ "10.100.0.4/32" ]; + }; }; clientPeers = builtins.attrValues clients;