infra/nix/overlays.nix
2022-01-29 11:13:57 +01:00

25 lines
514 B
Nix

let
nix-community-infra = pkgs: rec {
inherit (pkgs)
git-crypt
niv
sops
rsync
sources;
inherit (pkgs.python3.pkgs) invoke;
terraform = pkgs.terraform.withPlugins (
p: [
p.cloudflare
p.null
p.external
]
);
};
in
[
(self: super: { sources = import ./sources.nix; })
(self: super: { nix-community-infra = nix-community-infra super; })
(self: super: (import "${super.sources.hercules-ci-effects}/overlay.nix") self super)
]