nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

nixos/release-combined: Build graphical ISOs for aarch64-linux

+4 -4
+2 -2
nixos/release-combined.nix
··· 50 50 (onFullSupported "nixos.dummy") 51 51 (onAllSupported "nixos.iso_minimal") 52 52 (onSystems ["x86_64-linux" "aarch64-linux"] "nixos.amazonImage") 53 - (onSystems ["x86_64-linux"] "nixos.iso_plasma5") 54 - (onSystems ["x86_64-linux"] "nixos.iso_gnome") 53 + (onFullSupported "nixos.iso_plasma5") 54 + (onFullSupported "nixos.iso_gnome") 55 55 (onFullSupported "nixos.manual") 56 56 (onSystems ["x86_64-linux"] "nixos.ova") 57 57 (onSystems ["aarch64-linux"] "nixos.sd_image")
+2 -2
nixos/release.nix
··· 169 169 inherit system; 170 170 }); 171 171 172 - iso_plasma5 = forMatchingSystems [ "x86_64-linux" ] (system: makeIso { 172 + iso_plasma5 = forMatchingSystems supportedSystems (system: makeIso { 173 173 module = ./modules/installer/cd-dvd/installation-cd-graphical-calamares-plasma5.nix; 174 174 type = "plasma5"; 175 175 inherit system; 176 176 }); 177 177 178 - iso_gnome = forMatchingSystems [ "x86_64-linux" ] (system: makeIso { 178 + iso_gnome = forMatchingSystems supportedSystems (system: makeIso { 179 179 module = ./modules/installer/cd-dvd/installation-cd-graphical-calamares-gnome.nix; 180 180 type = "gnome"; 181 181 inherit system;