all repos — website @ 7cebe786bef7360dd0dddbabd220f2d604a14c45

My website

flake: enable evaluation by lorri

Alan Pearce
commit

7cebe786bef7360dd0dddbabd220f2d604a14c45

parent

a021f780a5217ddd2fd762fc9e2befdfbdd28c1a

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

changed files
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