summary refs log tree commit diff
path: root/nixos/tests/common/letsencrypt/common.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/common/letsencrypt/common.nix')
-rw-r--r--nixos/tests/common/letsencrypt/common.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/nixos/tests/common/letsencrypt/common.nix b/nixos/tests/common/letsencrypt/common.nix
deleted file mode 100644
index bd559c8dacc..00000000000
--- a/nixos/tests/common/letsencrypt/common.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ lib, nodes, pkgs, ... }: let
-  letsencrypt-ca = nodes.letsencrypt.config.test-support.letsencrypt.caCert;
-in {
-  networking.nameservers = [
-    nodes.letsencrypt.config.networking.primaryIPAddress
-  ];
-
-  security.acme.acceptTerms = true;
-  security.acme.email = "webmaster@example.com";
-
-  security.pki.certificateFiles = [ letsencrypt-ca ];
-}