pbb-nixfiles: no longer overlay everything

Signed-off-by: hexchen <hexchen@lilwit.ch>
This commit is contained in:
hexchen 2020-11-29 17:14:26 +00:00
parent 9d2a7878ca
commit 13e312140b

View file

@ -1,13 +1,27 @@
let let
pbbNixfiles = fetchGit { pbb-nixfiles = fetchGit {
url = "https://gitlab.infra4future.de/infra/dependencies/pbb-nixfiles"; url = "https://git.petabyte.dev/petabyteboy/nixfiles";
rev = "fcfa9a150bdc0c36996db89d6cee07dd5db82373"; rev = "ac4f83ecdc2ff1794223c0485ab749cbe399e802";
}; };
qyliss-nixlib = fetchTarball {
url = "https://git.qyliss.net/nixlib/snapshot/nixlib-e14330c5be9b005d4310cd4dc0d384cff882aedc.tar.zst";
sha256 = "0nan14ixhdzxxddnckqqhaxhr96yw08rgcmxssddhji6aq5a445j";
};
in { in {
imports = [ imports = [
"${pbbNixfiles}/modules" (pbb-nixfiles + "/modules")
]; ];
nixpkgs.overlays = [ 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;
};
})
]; ];
} }