flake: use explicit 'systems' input

This commit is contained in:
Bruno BELANYI 2024-03-07 11:32:28 +00:00
parent a4e742bf55
commit 97cc08d199
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
{ flake-parts
, futils
, systems
, ...
} @ inputs:
let
mySystems = futils.lib.defaultSystems;
mySystems = import systems;
in
flake-parts.lib.mkFlake { inherit inputs; } {
systems = mySystems;