From b12abb208f659b1164041e03d552cf490c13184a Mon Sep 17 00:00:00 2001 From: lassulus Date: Fri, 10 Jan 2025 17:19:06 +0100 Subject: [PATCH] checks.flash: add missing grub-install deps --- checks/flash/flake-module.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/checks/flash/flake-module.nix b/checks/flash/flake-module.nix index 29a3d7c26..89a652c69 100644 --- a/checks/flash/flake-module.nix +++ b/checks/flash/flake-module.nix @@ -10,10 +10,14 @@ let dependencies = [ pkgs.disko + self.clanInternals.machines.${pkgs.hostPlatform.system}.test-install-machine.pkgs.perlPackages.ConfigIniFiles + self.clanInternals.machines.${pkgs.hostPlatform.system}.test-install-machine.pkgs.perlPackages.FileSlurp + self.clanInternals.machines.${pkgs.hostPlatform.system}.test-install-machine.config.system.build.toplevel self.clanInternals.machines.${pkgs.hostPlatform.system}.test-install-machine.config.system.build.diskoScript self.clanInternals.machines.${pkgs.hostPlatform.system}.test-install-machine.config.system.build.diskoScript.drvPath self.clanInternals.machines.${pkgs.hostPlatform.system}.test-install-machine.config.system.clan.deployment.file + ] ++ builtins.map (i: i.outPath) (builtins.attrValues self.inputs); closureInfo = pkgs.closureInfo { rootPaths = dependencies; }; in