From 45dd09667ff9b841f636f99a68384c10760bebbd Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Wed, 11 Sep 2024 12:59:03 -0400 Subject: [PATCH] Revert "nixos/openvpn: add extraArgs option" --- nixos/modules/services/networking/openvpn.nix | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/nixos/modules/services/networking/openvpn.nix b/nixos/modules/services/networking/openvpn.nix index d122390c88ca..fba6d5e48f92 100644 --- a/nixos/modules/services/networking/openvpn.nix +++ b/nixos/modules/services/networking/openvpn.nix @@ -64,7 +64,7 @@ let path = [ pkgs.iptables pkgs.iproute2 pkgs.nettools ]; - serviceConfig.ExecStart = "@${openvpn}/sbin/openvpn openvpn --suppress-timestamps --config ${configFile} ${cfg.extraArgs}"; + serviceConfig.ExecStart = "@${openvpn}/sbin/openvpn openvpn --suppress-timestamps --config ${configFile}"; serviceConfig.Restart = "always"; serviceConfig.Type = "notify"; }; @@ -181,15 +181,6 @@ in ''; }; - extraArgs = mkOption { - default = null; - type = listOf str; - description = '' - Additional command line arguments to pass to this OpenVPN instance. - ''; - apply = lib.escapeShellArgs; - }; - authUserPass = mkOption { default = null; description = ''