27 lines
522 B
Nix
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;
|
|
})
|
|
]
|