From 891e208dbdc166b58fb40ef8928a85bba00b08a7 Mon Sep 17 00:00:00 2001 From: Richard Mauer Date: Thu, 26 Dec 2024 21:56:45 -0500 Subject: [PATCH] fixed escape, another variable --- pkgs/pxescript/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/pxescript/default.nix b/pkgs/pxescript/default.nix index 78fa53e..4d64b2a 100644 --- a/pkgs/pxescript/default.nix +++ b/pkgs/pxescript/default.nix @@ -30,7 +30,7 @@ runCommand "netboot" { :option_one kernel http://''${server}/''${path}/${pkgs.stdenv.hostPlatform.linux-kernel.target} - ${builtins.concatStringsSep "\n" (builtins.attrValues (builtins.mapAttrs (name: path: "initrd http://\${server}/''\${path}/${name}") initrds))} + ${builtins.concatStringsSep "\n" (builtins.attrValues (builtins.mapAttrs (name: path: "initrd http://\${server}/\${path}/${name}") initrds))} #initrd http://''${server}/''${path}/initrd #initrd http://''${server}/''${path}/manifest #initrd http://''${server}/''${path}/nix-store @@ -38,7 +38,7 @@ runCommand "netboot" { boot || goto custom_exit :option_two - kernel http://''${server}/netboot/memdisk raw iso + kernel http://''${server}/''${path}/memdisk raw iso initrd https://mirror.mauer.tech/archlinux/iso/latest/archlinux-x86_64.iso boot || goto custom_exit