Unverified Commit e51e0da3 authored by nat's avatar nat
Browse files

nixos/limine: substituteAll -> replaceVarsWith

parent fab95ba4
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;
          };
        };
      };
    })
  ];
}