From 34ea855049b7e4636f1911ee417789d8257520c4 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Wed, 27 Feb 2019 15:06:57 +0100 Subject: [PATCH] =?UTF-8?q?vsftpd:=20fix=2019.03=20->=20SSL=20activ=C3=A9?= =?UTF-8?q?=20par=20d=C3=A9faut?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- containers/vsftpd.nix | 3 --- overlays/vsftpd.nix | 6 ------ 2 files changed, 9 deletions(-) delete mode 100644 overlays/vsftpd.nix diff --git a/containers/vsftpd.nix b/containers/vsftpd.nix index 02fab550b..77fceae2c 100644 --- a/containers/vsftpd.nix +++ b/containers/vsftpd.nix @@ -5,9 +5,6 @@ config = { config, pkgs, ... }: { - nixpkgs.overlays = [ - (import ../overlays/vsftpd.nix) - ]; services.vsftpd = { enable = true; forceLocalLoginsSSL = true; diff --git a/overlays/vsftpd.nix b/overlays/vsftpd.nix deleted file mode 100644 index 9475490e1..000000000 --- a/overlays/vsftpd.nix +++ /dev/null @@ -1,6 +0,0 @@ -self: super: -{ - vsftpd = super.vsftpd.override { - sslEnable = true; - }; -}