all repos — website @ 7cebe786bef7360dd0dddbabd220f2d604a14c45

My website

flake: enable evaluation by lorri
Alan Pearce alan@alanpearce.eu
Mon, 29 Apr 2024 17:49:18 +0200
commit

7cebe786bef7360dd0dddbabd220f2d604a14c45

parent

a021f780a5217ddd2fd762fc9e2befdfbdd28c1a

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

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