about summary refs log tree commit diff
path: root/nixpkgs/nixos
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-12-11 16:23:16 +0000
committerAlyssa Ross <hi@alyssa.is>2020-12-11 16:23:16 +0000
commit1371a7281074acedfe9fe8004b9870964ca65cda (patch)
tree88486970bb31ba124e2397d351ad3241602eda43 /nixpkgs/nixos
parent0182c6ff20c13e07a209b0699b38f1d933183515 (diff)
downloadnixlib-1371a7281074acedfe9fe8004b9870964ca65cda.tar
nixlib-1371a7281074acedfe9fe8004b9870964ca65cda.tar.gz
nixlib-1371a7281074acedfe9fe8004b9870964ca65cda.tar.bz2
nixlib-1371a7281074acedfe9fe8004b9870964ca65cda.tar.lz
nixlib-1371a7281074acedfe9fe8004b9870964ca65cda.tar.xz
nixlib-1371a7281074acedfe9fe8004b9870964ca65cda.tar.zst
nixlib-1371a7281074acedfe9fe8004b9870964ca65cda.zip
nixos/mailman: remove webRoot option
Extracted from
b478e0043c53964c99cc9a145c155a673af3c7d8 ("nixos/mailman: refactor"),
to bring myself closer to current upstream.
Diffstat (limited to 'nixpkgs/nixos')
-rw-r--r--nixpkgs/nixos/modules/services/mail/mailman.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/nixpkgs/nixos/modules/services/mail/mailman.nix b/nixpkgs/nixos/modules/services/mail/mailman.nix
index 011e3db63954..d22332f142d4 100644
--- a/nixpkgs/nixos/modules/services/mail/mailman.nix
+++ b/nixpkgs/nixos/modules/services/mail/mailman.nix
@@ -98,18 +98,6 @@ in {
         '';
       };
 
-      webRoot = mkOption {
-        type = types.path;
-        default = "${pkgs.mailman-web}/${pkgs.python3.sitePackages}";
-        defaultText = "\${pkgs.mailman-web}/\${pkgs.python3.sitePackages}";
-        description = ''
-          The web root for the Hyperkity + Postorius apps provided by Mailman.
-          This variable can be set, of course, but it mainly exists so that site
-          admins can refer to it in their own hand-written web server
-          configuration files.
-        '';
-      };
-
       webHosts = mkOption {
         type = types.listOf types.str;
         default = [];