diff --git a/containers/vsftpd.nix b/containers/vsftpd.nix index 02fab55..77fceae 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 9475490..0000000 --- a/overlays/vsftpd.nix +++ /dev/null @@ -1,6 +0,0 @@ -self: super: -{ - vsftpd = super.vsftpd.override { - sslEnable = true; - }; -}