Unverified Commit c0f89cb6 authored by Ramses's avatar Ramses Committed by GitHub
Browse files

nixos/limine: substituteAll -> replaceVarsWith (#406872)

parents df86244a e51e0da3
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -358,14 +358,15 @@ in

      system = {
        boot.loader.id = "limine";
        build.installBootLoader = pkgs.substituteAll {
        build.installBootLoader = pkgs.replaceVarsWith {
          src = ./limine-install.py;
          isExecutable = true;

          replacements = {
            python3 = pkgs.python3.withPackages (python-packages: [ python-packages.psutil ]);
            configPath = limineInstallConfig;
          };
        };
      };
    })
  ];
}