summaryrefslogtreecommitdiff
path: root/hosts/toaster/network/dumpdvb.nix
diff options
context:
space:
mode:
authorGrisha Shipunov2025-07-19 12:27:04 +0000
committerGrisha Shipunov2025-07-19 12:59:37 +0000
commit1baa256be04a8b4e711a7d48a76197b5ffad6637 (patch)
treebbc01e0efd976e8f6185f421e41c650c1e6a53ee /hosts/toaster/network/dumpdvb.nix
parentb602a0c24771b1209003098ffa7ac496642cd084 (diff)
retire toaster
Diffstat (limited to 'hosts/toaster/network/dumpdvb.nix')
-rw-r--r--hosts/toaster/network/dumpdvb.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/hosts/toaster/network/dumpdvb.nix b/hosts/toaster/network/dumpdvb.nix
deleted file mode 100644
index d3fba93..0000000
--- a/hosts/toaster/network/dumpdvb.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ config, ... }:
-{
- systemd.network = {
- # Wireguard
- # Dump-dvb
- netdevs."30-wg-dumpdvb" = {
- netdevConfig = {
- Kind = "wireguard";
- Name = "wg-dumpdvb";
- Description = "dvb.solutions enterprise network";
- };
- wireguardConfig = {
- PrivateKeyFile = config.sops.secrets."wg/dvb".path;
- };
- wireguardPeers = [
- {
- PublicKey = "WDvCObJ0WgCCZ0ORV2q4sdXblBd8pOPZBmeWr97yphY=";
- Endpoint = "academicstrokes.com:51820";
- AllowedIPs = [ "10.13.37.0/24" ];
- PersistentKeepalive = 25;
- }
- ];
- };
- networks."30-wg-dumpdvb" = {
- matchConfig.Name = "wg-dumpdvb";
- networkConfig = {
- Address = "10.13.37.3/24";
- IPv6AcceptRA = true;
- };
- routes = [
- {
- Gateway = "10.13.37.1";
- Destination = "10.13.37.0/24";
- }
- ];
- };
- };
-}