blob: 6d0f194fc0676c9b1d58c5fcf2ce17e364901015 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{inputs, ...}: {
imports = [
./ci.nix
./dev.nix
];
_module.args.myLib = inputs.getchoo.lib {
inherit inputs;
};
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
}
|