infra/nix/overlays.nix

29 lines
508 B
Nix
Raw Normal View History

2020-04-05 20:38:20 +02:00
let
nix-community-infra = pkgs: rec {
inherit (pkgs)
git-crypt
niv
nixops
;
terraform-provider-vpsadmin =
2021-01-03 00:07:49 +01:00
pkgs.callPackage ./terraform-provider-vpsadmin.nix { };
2020-04-05 20:38:20 +02:00
terraform = pkgs.terraform.withPlugins (
p: [
p.cloudflare
2020-05-03 15:39:48 +02:00
p.null
p.external
2020-04-05 20:38:20 +02:00
terraform-provider-vpsadmin
]
);
};
in
2021-01-03 00:07:49 +01:00
[
(self: super: { sources = import ./sources.nix; })
(self: super: {
nix-community-infra = nix-community-infra super;
})
]