From 5ae0f2fcd5d91feb9aa6250064a826ea2c2f3188 Mon Sep 17 00:00:00 2001 From: Heisfer Date: Tue, 21 Jan 2025 21:05:15 +0200 Subject: [PATCH] Fix: welcomeText template path (#253) --- src/imports/templates.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imports/templates.nix b/src/imports/templates.nix index e0e8eac..09a5ad4 100644 --- a/src/imports/templates.nix +++ b/src/imports/templates.nix @@ -6,7 +6,7 @@ basic = { path = ../../templates/basic; description = "A basic template for getting started with PHP development"; - welcomeText = builtins.readFile ./templates/basic/README.md; + welcomeText = builtins.readFile ../../templates/basic/README.md; }; }; };