summaryrefslogtreecommitdiff
path: root/hci.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hci.nix')
-rw-r--r--hci.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/hci.nix b/hci.nix
deleted file mode 100644
index a9688cd..0000000
--- a/hci.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- inputs,
- self,
- ...
-}: {
- imports = [
- inputs.effects.flakeModule
- ];
-
- hercules-ci.flake-update = {
- enable = true;
- autoMergeMethod = "rebase";
-
- flakes = {
- ".".commitSummary = "flake: update inputs";
- };
-
- when = {
- minute = 0;
- hour = [0];
- dayOfWeek = ["Sun"];
- };
- };
-
- herculesCI = {
- config,
- lib,
- ...
- }: let
- findCompatible = lib.filterAttrs (s: _: builtins.elem s config.ciSystems);
- in {
- ciSystems = ["x86_64-linux" "aarch64-linux"];
-
- onPush.default.outputs = lib.mkForce {
- packages = findCompatible self.packages;
- };
- };
-}