From 09206bfe334955f3e9d87acde9425adbab82edd4 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Thu, 31 Jul 2025 19:35:53 +0200 Subject: [PATCH] nixos/homer: fix escape docstring --- nixos/modules/services/web-apps/homer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/homer.nix b/nixos/modules/services/web-apps/homer.nix index 28936bf57be0..50c460c4a6c1 100644 --- a/nixos/modules/services/web-apps/homer.nix +++ b/nixos/modules/services/web-apps/homer.nix @@ -49,7 +49,7 @@ in To add files such as icons or backgrounds, you can reference them in line such as ```nix - icon = "$\{./icon.png}"; + icon = "''${./icon.png}"; ``` This will add the file to the nix store upon build, referencing it by file path as expected by Homer. '';