From 24bd3f5c77f17be4ef737d9eb5ae28d5474d1ca8 Mon Sep 17 00:00:00 2001 From: Lorenz Leutgeb Date: Wed, 13 Mar 2024 13:27:57 +0100 Subject: [PATCH] nixos/mailman: Remove unused `extraPythonPackages` --- nixos/modules/services/mail/mailman.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/nixos/modules/services/mail/mailman.nix b/nixos/modules/services/mail/mailman.nix index e3c014a6c6557..3aa1c65a8d268 100644 --- a/nixos/modules/services/mail/mailman.nix +++ b/nixos/modules/services/mail/mailman.nix @@ -80,6 +80,9 @@ in { (lib.mkRemovedOptionModule [ "services" "mailman" "package" ] '' Didn't have an effect for several years. '') + (lib.mkRemovedOptionModule [ "services" "mailman" "extraPythonPackages" ] '' + Didn't have an effect for several years. + '') ]; options = { @@ -282,12 +285,6 @@ in { }; }; - extraPythonPackages = lib.mkOption { - description = "Packages to add to the python environment used by mailman and mailman-web"; - type = lib.types.listOf lib.types.package; - default = []; - }; - settings = lib.mkOption { description = "Settings for mailman.cfg"; type = lib.types.attrsOf (lib.types.attrsOf lib.types.str);