infra/nix/overlays.nix
Jonas Chevalier c96e15b14a
niv update ()
* remove vpsadmin

We're not using this at the moment

* niv update
2021-01-03 00:53:49 +00:00

24 lines
375 B
Nix

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