mirror of
https://github.com/divnix/digga.git
synced 2024-12-23 16:11:51 +03:00
12 lines
224 B
Nix
12 lines
224 B
Nix
let
|
|
eachSystem = import ./eachSystem.nix;
|
|
in
|
|
|
|
supportedSystems:
|
|
imprt: inputs:
|
|
eachSystem supportedSystems (system:
|
|
import imprt {
|
|
inherit inputs system; # The super stupid flakes contract `{ inputs, system }`
|
|
}
|
|
)
|