From e8fca43d0cdbb41ab87f652ae132867dfd626c8c Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Mon, 1 Jul 2024 19:29:30 +0200 Subject: [PATCH] tips(how_to_test_pr): Add content in nix block code --- tips/how_to_test_pr.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tips/how_to_test_pr.md b/tips/how_to_test_pr.md index 4c3af1f..3b4773e 100644 --- a/tips/how_to_test_pr.md +++ b/tips/how_to_test_pr.md @@ -1,5 +1,6 @@ # Example for ollama +```nix { config, pkgs, lib, ... }: with lib; @@ -32,3 +33,4 @@ in }; }; } +```