diff options
| author | Mel <mel@rnrd.eu> | 2025-10-03 18:24:28 +0200 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2025-10-03 18:24:28 +0200 |
| commit | 46f5b502625402b130a23b3f25d6c4395c154806 (patch) | |
| tree | 541b1591032c595fcd55077e1201b8c14ca85006 /machines/truite/default.nix | |
| parent | 514dcb90b0cea0dfa5a896a4fdebbe4fcb7459f8 (diff) | |
| download | network-46f5b502625402b130a23b3f25d6c4395c154806.tar.zst network-46f5b502625402b130a23b3f25d6c4395c154806.zip | |
Rename Russian VPN server "zibeline" into "truite"
I think when all our VPN server names start with a "T", it looks pretty nice! If you didn't notice: The "T" stands for "Tunnel"! :) Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'machines/truite/default.nix')
| -rw-r--r-- | machines/truite/default.nix | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/machines/truite/default.nix b/machines/truite/default.nix new file mode 100644 index 0000000..9670da2 --- /dev/null +++ b/machines/truite/default.nix @@ -0,0 +1,51 @@ +{ me, machines, ... }: + +{ + imports = [ + ../../modules/common.nix + + ./hardware.nix + ./devices.nix + ]; + + foundation = { + www = { + enable = true; + + public = true; + tailnet = false; + }; + + monitoring = { + client.enable = true; + services = [ + "base" + "tailnet" + ]; + }; + + wireguard.server = { + enable = true; + externalInterface = "eth0"; + + peers = { + mel = { + key = "vnZoHXapCLLUhZ8A8R5W0iJ8LpWVLve29z41kkoT0BU="; + ip = 2; + }; + + andrei = { + key = "qqU4uYImLfUohIwl4KBshPtTINFcs0JVALjbmwpfxRg="; + ip = 3; + }; + + sergo = { + key = "qbZGMNIDZFCJC6SHtlyNIlIdGWHELceXClJCcagrj2Y="; + ip = 4; + }; + }; + }; + }; + + system.stateVersion = "25.05"; +} |
