From 81f930168a4ffca028c01efde6c4cff15e66e59a Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 12 Apr 2023 16:50:51 +0000 Subject: [PATCH] flake: use 'defaultSystems' Instead of writing a list which amounts to the same thing. --- flake/default.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/flake/default.nix b/flake/default.nix index d1b360c..8dd752e 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -6,14 +6,7 @@ let inherit (self) lib; - inherit (futils.lib) system; - - mySystems = [ - system.aarch64-darwin - system.aarch64-linux - system.x86_64-darwin - system.x86_64-linux - ]; + mySystems = futils.lib.defaultSystems; in flake-parts.lib.mkFlake { inherit inputs; } { systems = mySystems;