summary refs log tree commit diff
path: root/lib/systems/supported.nix
blob: a1c038a5c8bc0903dee9d45ecd3d83694194d080 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Supported systems according to RFC0046's definition.
#
# https://github.com/NixOS/rfcs/blob/master/rfcs/0046-platform-support-tiers.md
{ lib }:
rec {
  # List of systems that are built by Hydra.
  hydra = tier1 ++ tier2 ++ tier3 ++ [
    "aarch64-darwin"
  ];

  tier1 = [
    "x86_64-linux"
  ];

  tier2 = [
    "aarch64-linux"
    "x86_64-darwin"
  ];

  tier3 = [
    "armv6l-linux"
    "armv7l-linux"
    "i686-linux"
    "mipsel-linux"
  ];
}