From a7171c7aa776b8747f986be6724b5b66868ea879 Mon Sep 17 00:00:00 2001 From: Mr Hedgehog Date: Mon, 31 Jan 2022 09:40:22 -0500 Subject: [PATCH] Remove infinite recursion Because the repo follows itself, you get infinite recursion when updating your flake or when checking it, so you get alejandra following alejandra following alejandra, etc. This massively bloats flake.lock sizes and is just not fun to deal with. --- flake.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/flake.nix b/flake.nix index 7765d1f..6e96b7a 100644 --- a/flake.nix +++ b/flake.nix @@ -1,7 +1,6 @@ { inputs = { alejandra.url = "github:kamadorueda/alejandra"; - alejandra.inputs.alejandra.follows = "alejandra"; alejandra.inputs.fenix.follows = "fenix"; alejandra.inputs.flakeCompat.follows = "flakeCompat"; alejandra.inputs.flakeUtils.follows = "flakeUtils";