18 lines
290 B
Nix
18 lines
290 B
Nix
{self, ...}: {
|
|
defaultEffectSystem = "aarch64-linux";
|
|
|
|
hercules-ci = {
|
|
flake-update = {
|
|
enable = true;
|
|
when.dayOfWeek = "Mon";
|
|
};
|
|
};
|
|
|
|
herculesCI = {
|
|
onPush = {
|
|
default.enable = true;
|
|
|
|
wrappers.outputs = self.packages.aarch64-linux;
|
|
};
|
|
};
|
|
}
|