infra/nix/overlays.nix
2021-03-06 09:04:24 +01:00

23 lines
419 B
Nix

let
nix-community-infra = pkgs: rec {
inherit (pkgs)
git-crypt
niv;
nixopsUnstable = (pkgs.nixopsUnstable.withPlugins(ps: []));
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;
})
]