pbb-nixfiles: no longer overlay everything

Signed-off-by: hexchen <hexchen@lilwit.ch>
keep-around/13e312140bed0d7b85d0b9eabac6e1c35d69952e
hexchen 2020-11-29 17:14:26 +00:00
parent 9d2a7878ca
commit 13e312140b
1 changed files with 19 additions and 5 deletions

View File

@ -1,13 +1,27 @@
let
pbbNixfiles = fetchGit {
url = "https://gitlab.infra4future.de/infra/dependencies/pbb-nixfiles";
rev = "fcfa9a150bdc0c36996db89d6cee07dd5db82373";
pbb-nixfiles = fetchGit {
url = "https://git.petabyte.dev/petabyteboy/nixfiles";
rev = "ac4f83ecdc2ff1794223c0485ab749cbe399e802";
};
qyliss-nixlib = fetchTarball {
url = "https://git.qyliss.net/nixlib/snapshot/nixlib-e14330c5be9b005d4310cd4dc0d384cff882aedc.tar.zst";
sha256 = "0nan14ixhdzxxddnckqqhaxhr96yw08rgcmxssddhji6aq5a445j";
};
in {
imports = [
"${pbbNixfiles}/modules"
(pbb-nixfiles + "/modules")
];
nixpkgs.overlays = [
(self: super: import "${pbbNixfiles}/pkgs" { nixpkgs = super.path; })
(self: super: {
pleroma = self.callPackage (pbb-nixfiles + "/pkgs/pleroma") {
elixir_1_10 = super.elixir;
};
dino = self.callPackage (qyliss-nixlib + "/overlays/patches/dino") {
inherit (super) dino;
};
})
];
}