From 2570711ed481e2a36b3c3ce0a49c83e46fab8bb1 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Sat, 4 May 2024 10:45:36 -0500 Subject: [PATCH] This makes a lot more sense. --- nixos/telperion/configuration.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/nixos/telperion/configuration.nix b/nixos/telperion/configuration.nix index 9b094d1..f08a8b5 100644 --- a/nixos/telperion/configuration.nix +++ b/nixos/telperion/configuration.nix @@ -83,11 +83,10 @@ # ALSO # point ipxe tagged requests to the matchbox iPXE boot script (via HTTP) # pxe-service="tag:ipxe,0,matchbox,http://10.1.1.57:8080/boot.ipxe"; - # also this double pxe-service config hack sucks, but it works. - pxe-service='' - tag:#ipxe,x86PC,"PXE chainload to iPXE",undionly.kpxe - pxe-service=tag:ipxe,0,matchbox,http://10.1.1.57:8086/boot.ipxe - ''; + pxe-service = [ + "tag:#ipxe,x86PC,\"PXE chainload to iPXE\",undionly.kpxe" + "tag:ipxe,0,matchbox,http://10.1.1.57:8086/boot.ipxe" + ]; log-queries = true; log-dhcp = true; };