all repos — homestead @ 191a699108234c4ba31f1ce41b78766a6d717fed

Code for my website

flake: enable evaluation by lorri

Alan Pearce
commit

191a699108234c4ba31f1ce41b78766a6d717fed

parent

30d38d3e3a6194518736189abfa1f6805264a5fd

2 files changed, 9 insertions(+), 1 deletion(-)

jump to
M .envrc.envrc
@@ -1,1 +1,6 @@
-use flake +if type -P lorri &>/dev/null; then + eval "$(lorri direnv)" +else + echo 'while direnv evaluated .envrc, could not find the command "lorri" [https://github.com/nix-community/lorri]' + use flake +fi
A shell.nix
@@ -0,0 +1,3 @@
+{ system ? builtins.currentSystem }: + +(builtins.getFlake (toString ./.)).devShells.${system}.default