25 lines
497 B
Nix
25 lines
497 B
Nix
{
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
flake-file.inputs = {
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
flake-file.url = "github:vic/flake-file";
|
|
import-tree.url = "github:vic/import-tree";
|
|
};
|
|
|
|
imports = [
|
|
inputs.flake-parts.flakeModules.modules
|
|
inputs.flake-file.flakeModules.default
|
|
];
|
|
|
|
flake-file.outputs = ''
|
|
inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules)
|
|
'';
|
|
|
|
systems = [
|
|
"aarch64-linux"
|
|
"x86_64-linux"
|
|
];
|
|
}
|