infra/nix/overlays.nix
2021-09-25 22:35:55 +02:00

27 lines
522 B
Nix

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