support all systems supported by hydra

This commit is contained in:
Artturin 2022-03-23 23:00:36 +02:00
parent e60adc346d
commit 67f26046b9

View File

@ -9,7 +9,7 @@
let
b = builtins;
lib = nixpkgs.lib;
supportedSystems = [ "x86_64-linux" "x86_64-darwin" ];
supportedSystems = lib.systems.supported.hydra;
forAllSystems = f: lib.genAttrs supportedSystems
(system: f system (import nixpkgs { inherit system; }));
in