summaryrefslogtreecommitdiff
path: root/hosts/dishwasher/oxalab.nix
diff options
context:
space:
mode:
authorGrigory Shipunov2025-01-02 15:35:05 +0000
committerGrigory Shipunov2025-01-02 15:35:05 +0000
commitc1e09364bb412f1e09d1a680e5200d375a61694f (patch)
treea2f5cbc73043afb46a7d1d23864299b82e32449a /hosts/dishwasher/oxalab.nix
parentcd63ec45b8776bebc4014efb9990b364e0afb443 (diff)
remove obsolete infra
Diffstat (limited to 'hosts/dishwasher/oxalab.nix')
-rw-r--r--hosts/dishwasher/oxalab.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/hosts/dishwasher/oxalab.nix b/hosts/dishwasher/oxalab.nix
deleted file mode 100644
index 7e79971..0000000
--- a/hosts/dishwasher/oxalab.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ config, ... }:
-{
- networking.wireguard.enable = true;
- systemd.network = {
- netdevs."oxalab" = {
- netdevConfig = {
- Kind = "wireguard";
- Name = "oxalab";
- Description = "oxa's enterprise network";
- };
- wireguardConfig = {
- PrivateKeyFile = config.sops.secrets."wg/oxalab-seckey".path;
- };
- wireguardPeers = [
- {
- # cirrus
- wireguardPeerConfig = {
- PublicKey = "5nCVC21BL+1r70OGwA4Q6Z/gcPLC3+ZF8sTurdn7N0E=";
- AllowedIPs = [ "10.66.66.0/24" ];
- Endpoint = [ "95.216.166.21:51820" ];
- PersistentKeepalive = 25;
- };
- }
- ];
- };
- networks."oxalab" = {
- matchConfig.Name = "oxalab";
- networkConfig = {
- Address = "10.66.66.100/24";
- };
- };
- };
-}