From 1a69d19cf3a377d7f84c74e809c9c94fa8b46bda Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Thu, 3 Jun 2021 09:12:52 -0400 Subject: [PATCH] remove stray close curly --- nixos/modules/issuer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/issuer.nix b/nixos/modules/issuer.nix index 28bba0a6..fb93ce35 100644 --- a/nixos/modules/issuer.nix +++ b/nixos/modules/issuer.nix @@ -127,7 +127,7 @@ in { # Make sure we have a certificate the first time, if we are running over # TLS and require a certificate. - requires = lib.optional cfg.tls "${certServiceName}.service}"; + requires = lib.optional cfg.tls "${certServiceName}.service"; after = [ # Make sure there is a network so we can bind to all of the -- GitLab