@cryptotaxi247 / infra / commits / f97f53a8

Add 16.09 channel

Domen Kožar committed Sep 4, 2016 at 11:34 UTC f97f53a8a201f4a8277e91c0d6805f378e62d5fe
1 file changed +11 -9
nixos-org/hydra-mirror.nix
+11 -9
@@ -55,14 +55,16 @@ in
55 */
56
57 systemd =
58 - fold recursiveUpdate {}
59 - [ (makeUpdateChannel "nixos-16.03" "nixos/release-16.03/tested")
60 - (makeUpdateChannel "nixos-16.03-small" "nixos/release-16.03-small/tested")
61 - (makeUpdateChannel "nixos-15.09" "nixos/release-15.09/tested")
62 - (makeUpdateChannel "nixos-15.09-small" "nixos/release-15.09-small/tested")
63 - (makeUpdateChannel "nixos-unstable" "nixos/trunk-combined/tested")
64 - (makeUpdateChannel "nixos-unstable-small" "nixos/unstable-small/tested")
65 - (makeUpdateChannel "nixpkgs-unstable" "nixpkgs/trunk/unstable")
66 - ];
58 + fold recursiveUpdate {} [
59 + (makeUpdateChannel "nixos-16.09" "nixos/release-16.09/tested")
60 + (makeUpdateChannel "nixos-16.09-small" "nixos/release-16.09-small/tested")
61 + (makeUpdateChannel "nixos-16.03" "nixos/release-16.03/tested")
62 + (makeUpdateChannel "nixos-16.03-small" "nixos/release-16.03-small/tested")
63 + (makeUpdateChannel "nixos-15.09" "nixos/release-15.09/tested")
64 + (makeUpdateChannel "nixos-15.09-small" "nixos/release-15.09-small/tested")
65 + (makeUpdateChannel "nixos-unstable" "nixos/trunk-combined/tested")
66 + (makeUpdateChannel "nixos-unstable-small" "nixos/unstable-small/tested")
67 + (makeUpdateChannel "nixpkgs-unstable" "nixpkgs/trunk/unstable")
68 + ];
69
70 }