nixos/release: Replace a: b: a // b by mergeAttrs

No change in functionality, it just looks nicer that way.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>

aszlig a429444a 4686bc54

+1 -1
+1 -1
nixos/release.nix
··· 31 # If the test is only for a particular system, use only the specified 32 # system instead of generating attributes for all available systems. 33 in if args ? system then discover (import fn args) 34 - else foldAttrs (a: b: a // b) {} (map discoverForSystem supportedSystems); 35 36 pkgs = import nixpkgs { system = "x86_64-linux"; }; 37
··· 31 # If the test is only for a particular system, use only the specified 32 # system instead of generating attributes for all available systems. 33 in if args ? system then discover (import fn args) 34 + else foldAttrs mergeAttrs {} (map discoverForSystem supportedSystems); 35 36 pkgs = import nixpkgs { system = "x86_64-linux"; }; 37