infra/nix/overlays.nix
2021-10-21 11:24:51 +02:00

27 lines
448 B
Nix

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