From 7bc8e091a542563f08816596b9d165de566dd3be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 7 Jul 2025 21:45:06 +0200 Subject: [PATCH] checks/backup: no longer depend on self --- checks/backups/flake-module.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 {