summary refs log tree commit diff
diff options
context:
space:
mode:
authorDominique Martinet <asmadeus@codewreck.org>2020-09-28 14:34:01 +0200
committerDominique Martinet <asmadeus@codewreck.org>2020-11-01 18:17:57 +0100
commit05eef8051b2c129e05973073b6772b2d36db76c1 (patch)
treed3a31dff231be246596b205d0ad8c2126fae931c
parent4fe0ea478a0ce98ebd919ffa62506c6151ac7a98 (diff)
downloadnixpkgs-05eef8051b2c129e05973073b6772b2d36db76c1.tar
nixpkgs-05eef8051b2c129e05973073b6772b2d36db76c1.tar.gz
nixpkgs-05eef8051b2c129e05973073b6772b2d36db76c1.tar.bz2
nixpkgs-05eef8051b2c129e05973073b6772b2d36db76c1.tar.lz
nixpkgs-05eef8051b2c129e05973073b6772b2d36db76c1.tar.xz
nixpkgs-05eef8051b2c129e05973073b6772b2d36db76c1.tar.zst
nixpkgs-05eef8051b2c129e05973073b6772b2d36db76c1.zip
stunnel service: fix servers example
examples incorrectly had 'enable' set, the option is not defined
and reproducing would error out
-rw-r--r--nixos/modules/services/networking/stunnel.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/stunnel.nix b/nixos/modules/services/networking/stunnel.nix
index ab51bba2f6a..2720bcf1093 100644
--- a/nixos/modules/services/networking/stunnel.nix
+++ b/nixos/modules/services/networking/stunnel.nix
@@ -129,7 +129,6 @@ in
         type = with types; attrsOf (submodule serverConfig);
         example = {
           fancyWebserver = {
-            enable = true;
             accept = 443;
             connect = 8080;
             cert = "/path/to/pem/file";