From daa093bf3c790fe89623f33f7d67ce66a102d50c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Mar 2016 13:57:01 +0100 Subject: Build most ISOs/OVAs for x86_64-linux only Probably not many people care about i686-linux any more, but building all these images is fairly expensive (e.g. in the worst case, every Nixpkgs commit would trigger a few gigabytes of uploads to S3). --- nixos/release.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nixos') diff --git a/nixos/release.nix b/nixos/release.nix index 9d577a24b9e5..d190733d5c13 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -110,7 +110,7 @@ in rec { inherit system; }); - iso_graphical = forAllSystems (system: makeIso { + iso_graphical = genAttrs [ "x86_64-linux" ] (system: makeIso { module = ./modules/installer/cd-dvd/installation-cd-graphical-kde.nix; type = "graphical"; inherit system; @@ -118,7 +118,7 @@ in rec { # A variant with a more recent (but possibly less stable) kernel # that might support more hardware. - iso_minimal_new_kernel = forAllSystems (system: makeIso { + iso_minimal_new_kernel = genAttrs [ "x86_64-linux" ] (system: makeIso { module = ./modules/installer/cd-dvd/installation-cd-minimal-new-kernel.nix; type = "minimal-new-kernel"; inherit system; @@ -126,7 +126,7 @@ in rec { # A bootable VirtualBox virtual appliance as an OVA file (i.e. packaged OVF). - ova = forAllSystems (system: + ova = genAttrs [ "x86_64-linux" ] (system: with import nixpkgs { inherit system; }; -- cgit 1.4.1