From 6eb8a1d24f0e5742bf9f2974281b7257c17b46c9 Mon Sep 17 00:00:00 2001 From: Astro Date: Sat, 10 Apr 2021 14:43:46 +0200 Subject: [PATCH] lib/config/options: remove wg from interfaces --- nix/lib/config/options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/lib/config/options.nix b/nix/lib/config/options.nix index f5b4091..7ef6f47 100644 --- a/nix/lib/config/options.nix +++ b/nix/lib/config/options.nix @@ -109,7 +109,7 @@ let default = null; }; type = mkOption { - type = types.enum [ "veth" "phys" "wg" ]; + type = types.enum [ "phys" "veth" ]; }; gw4 = mkOption { type = with types; nullOr str;