From c7ead8559b690be83cdac5cda89b9dad88494116 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Sat, 8 Jul 2023 23:05:50 +0100 Subject: [PATCH] shell.nix: set FENNEL_PATH for interactive convenience --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index 1920392..071224e 100644 --- a/shell.nix +++ b/shell.nix @@ -10,4 +10,5 @@ in liminix.buildEnv.overrideAttrs (o: { shellHook = '' publish(){ make -C doc html && rsync -azv doc/_build/html/ myhtic.telent.net:/var/www/blogs/www.liminix.org/_site/doc; } ''; + FENNEL_PATH = "pkgs/?/init.fnl;pkgs/?.fnl"; })