From 97d40540f816b94a9f386a1fa3d0daea3cc1d87c Mon Sep 17 00:00:00 2001 From: Rory& Date: Sat, 27 Dec 2025 10:33:00 +0100 Subject: [PATCH] Fix copy paste failure --- nix/modules/default/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nix/modules/default/default.nix b/nix/modules/default/default.nix index aa81975c1..04876509a 100644 --- a/nix/modules/default/default.nix +++ b/nix/modules/default/default.nix @@ -89,22 +89,22 @@ in default = null; description = "Path to the secret"; }; - legacyJwtSecretPath = libMkOption { + legacyJwtSecretPath = lib.mkOption { type = lib.types.nullOr lib.types.str; default = null; description = "Path to the secret"; }; - mailjetApiKeyPath = libMkOption { + mailjetApiKeyPath = lib.mkOption { type = lib.types.nullOr lib.types.str; default = null; description = "Path to the secret"; }; - mailjetApiSecretPath = libMkOption { + mailjetApiSecretPath = lib.mkOption { type = lib.types.nullOr lib.types.str; default = null; description = "Path to the secret"; }; - smtpPasswordPath = libMkOption { + smtpPasswordPath = lib.MkOption { type = lib.types.nullOr lib.types.str; default = null; description = "Path to the secret";