From 640ec5f6491ad9b6c37d12db0450745d9c7c59c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 1 May 2016 10:00:31 +0100 Subject: [PATCH] netboot: fix eval --- nixos/release.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/release.nix b/nixos/release.nix index ab4e1aaf7d4..8409191200c 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -111,11 +111,11 @@ in rec { ]; }).config.system.build; in - pkgs.symlinkJoin "netboot" [ + pkgs.symlinkJoin {name="netboot"; paths=[ build.netbootRamdisk build.kernel build.netbootIpxeScript - ]; + ];}; iso_minimal = forAllSystems (system: makeIso { module = ./modules/installer/cd-dvd/installation-cd-minimal.nix;