From 0e61efe5b5ef7364b717c1139fcd29d06bff1a67 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 1 Apr 2026 17:07:47 -0500 Subject: [PATCH] fix: rename tun.dev to tun.device (correct NixOS option name) --- modules/nixos/nebula.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/nixos/nebula.nix b/modules/nixos/nebula.nix index 0c3e460..5b398d2 100644 --- a/modules/nixos/nebula.nix +++ b/modules/nixos/nebula.nix @@ -160,8 +160,8 @@ in relays = lib.optionals (!cfg.isLighthouse && !cfg.isRelay) [ cfg.lighthouseNebulaIp ]; tun = { - # Interface name: nebula. - dev = "nebula0"; + # Interface name + device = "nebula0"; # unsafe_routes for hosts that need access to a non-Nebula subnet unsafeRoutes = cfg.unsafeRoutes; };