flake: use 'defaultSystems'
All checks were successful
ci/woodpecker/push/check Pipeline was successful

Instead of writing a list which amounts to the same thing.
This commit is contained in:
Bruno BELANYI 2023-04-12 16:50:51 +00:00
parent 520d799124
commit 81f930168a

View file

@ -6,14 +6,7 @@
let let
inherit (self) lib; inherit (self) lib;
inherit (futils.lib) system; mySystems = futils.lib.defaultSystems;
mySystems = [
system.aarch64-darwin
system.aarch64-linux
system.x86_64-darwin
system.x86_64-linux
];
in in
flake-parts.lib.mkFlake { inherit inputs; } { flake-parts.lib.mkFlake { inherit inputs; } {
systems = mySystems; systems = mySystems;