Revert "Revert "Testing Hercules CI""

This reverts commit f0060d4847.
This commit is contained in:
Andrea Ciceri 2022-04-14 11:08:36 +02:00
parent 38a1ab0a86
commit 4884c287a0
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
4 changed files with 60 additions and 15 deletions

View file

@ -13,6 +13,12 @@
digga.inputs.nixlib.follows = "unstable";
digga.inputs.home-manager.follows = "unstable";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
flake-compat-ci.url = github:hercules-ci/flake-compat-ci;
home.url = "github:nix-community/home-manager/release-21.11";
home.inputs.nixpkgs.follows = "unstable";
@ -39,7 +45,8 @@
outputs =
{ self
, digga
, nixos
, flake-compat-ci
, unstable
, home
, nixos-hardware
, darwin
@ -81,7 +88,7 @@
};
};
lib = import ./lib { lib = digga.lib // nixos.lib; };
lib = import ./lib { lib = digga.lib // unstable.lib; };
sharedOverlays = [
(
@ -177,5 +184,12 @@
inherit emacs-overlay; unstablePkgsInput = inputs.unstablePkgs;
};
};
ciNix = flake-compat-ci.lib.recurseIntoFlakeWith {
flake = self;
systems = [ "x86_64-linux" ];
};
};
}