diff --git a/checks/backups/flake-module.nix b/checks/backups/flake-module.nix index a735f07ff..67e744718 100644 --- a/checks/backups/flake-module.nix +++ b/checks/backups/flake-module.nix @@ -19,10 +19,11 @@ ... }: let - dependencies = [ - self - pkgs.stdenv.drvPath - ] ++ builtins.map (i: i.outPath) (builtins.attrValues self.inputs); + dependencies = + [ + pkgs.stdenv.drvPath + ] + ++ builtins.map (i: i.outPath) (builtins.attrValues (builtins.removeAttrs self.inputs [ "self" ])); closureInfo = pkgs.closureInfo { rootPaths = dependencies; }; in {