From 83849e86f87a7f550e3f3fc2a5f284d90f7662e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 25 Jun 2024 16:42:24 +0200 Subject: [PATCH] allow secretKeyFile to be a path --- nix/master.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/master.nix b/nix/master.nix index bea306f..856cea8 100644 --- a/nix/master.nix +++ b/nix/master.nix @@ -159,7 +159,7 @@ in }; options.secretKeyFile = lib.mkOption { - type = lib.types.str; + type = lib.types.nullOr lib.types.path; description = '' GitHub app secret key file location. '';