accounts/contacts: fix defaultText rendering

This commit is contained in:
Sandro Jäckel 2024-10-23 22:55:53 +02:00
parent 5765fe4feb
commit a4353cc43d
Failed to generate hash of commit

View file

@ -12,7 +12,8 @@ let
path = mkOption {
type = types.str;
default = "${cfg.basePath}/${name}";
defaultText = "accounts.contact.basePath/name";
defaultText =
lib.literalExpression "accounts.contact.basePath/name";
description = "The path of the storage.";
};