From e599d060a0d68c7bda0e4f1b5a9005872c3f9fe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 9 Jan 2022 10:33:54 +0100 Subject: [PATCH] add defaultText for options --- modules/ca/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ca/default.nix b/modules/ca/default.nix index 23f43e3..d5a2db2 100644 --- a/modules/ca/default.nix +++ b/modules/ca/default.nix @@ -6,11 +6,13 @@ in { type = lib.types.str; readOnly = true; default = builtins.readFile ./root-ca.crt; + defaultText = "root-ca.crt"; }; intermediateCA = lib.mkOption { type = lib.types.str; readOnly = true; default = builtins.readFile ./intermediate-ca.crt; + defaultText = "intermediate-ca.crt"; }; acmeURL = lib.mkOption { type = lib.types.str;