From 9dd1f943ecd198a720605724700d9c1292c8c980 Mon Sep 17 00:00:00 2001 From: Sandro Date: Wed, 30 Oct 2024 23:48:18 +0100 Subject: [PATCH] nixos/nextcloud-notify_push: fix defaultText rendering --- nixos/modules/services/web-apps/nextcloud-notify_push.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/nextcloud-notify_push.nix b/nixos/modules/services/web-apps/nextcloud-notify_push.nix index 961178cedc06..475cddf5f751 100644 --- a/nixos/modules/services/web-apps/nextcloud-notify_push.nix +++ b/nixos/modules/services/web-apps/nextcloud-notify_push.nix @@ -48,7 +48,7 @@ in ] ( opt: options.services.nextcloud.config.${opt} // { default = config.services.nextcloud.config.${opt}; - defaultText = "config.services.nextcloud.config.${opt}"; + defaultText = lib.literalExpression "config.services.nextcloud.config.${opt}"; } ) );