summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
authorJonas Chevalier <zimbatm@zimbatm.com>2021-10-05 09:14:47 +0000
committerGitHub <noreply@github.com>2021-10-05 11:14:47 +0200
commit8377a7bca967dba811899164d4218d1d4a24b483 (patch)
tree931a54c56c39aba65131393d8c1561fd5ffe1f69 /flake.nix
parenta2a0a58f7c6c3d6f1174524333c078052916841f (diff)
downloadnixpkgs-8377a7bca967dba811899164d4218d1d4a24b483.tar
nixpkgs-8377a7bca967dba811899164d4218d1d4a24b483.tar.gz
nixpkgs-8377a7bca967dba811899164d4218d1d4a24b483.tar.bz2
nixpkgs-8377a7bca967dba811899164d4218d1d4a24b483.tar.lz
nixpkgs-8377a7bca967dba811899164d4218d1d4a24b483.tar.xz
nixpkgs-8377a7bca967dba811899164d4218d1d4a24b483.tar.zst
nixpkgs-8377a7bca967dba811899164d4218d1d4a24b483.zip
lib: add list of supported systems (#140428)
Adds the first 3 tiers of RFC0046 that are being used in flake.nix.
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix10
1 files changed, 1 insertions, 9 deletions
diff --git a/flake.nix b/flake.nix
index ececd26c153..1e20fcd40eb 100644
--- a/flake.nix
+++ b/flake.nix
@@ -11,15 +11,7 @@
 
       lib = import ./lib;
 
-      systems = [
-        "x86_64-linux"
-        "i686-linux"
-        "x86_64-darwin"
-        "aarch64-linux"
-        "armv6l-linux"
-        "armv7l-linux"
-        "aarch64-darwin"
-      ];
+      systems = lib.systems.supported.hydra;
 
       forAllSystems = f: lib.genAttrs systems (system: f system);