summary refs log tree commit diff
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-12-27 10:33:00 +0100
committerRory& <root@rory.gay>2025-12-27 10:33:00 +0100
commit97d40540f816b94a9f386a1fa3d0daea3cc1d87c (patch)
treed7ebe9659a3413659f390e59cc913b4a7fb1c5ef
parentAllow passing config secrets as paths (diff)
downloadserver-ts-97d40540f816b94a9f386a1fa3d0daea3cc1d87c.tar.xz
Fix copy paste failure
-rw-r--r--nix/modules/default/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nix/modules/default/default.nix b/nix/modules/default/default.nix

index aa81975c..04876509 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";