Source cleanups and renaming. Module inhousing & changes.

This commit is contained in:
kat witch 2021-07-04 21:50:13 +01:00
parent af9e6394aa
commit b310c0306a
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
28 changed files with 315 additions and 119 deletions

View file

@ -4,11 +4,13 @@ let
pkgs = import sources.nixpkgs { inherit config; };
overlay = self: super:
rec {
dino =
super.callPackage "${sources.qyliss-nixlib}/overlays/patches/dino" {
inherit (super) dino;
};
dino = super.dino.overrideAttrs (
{ patches ? [], ... }: {
patches = patches ++ [
./dino/0001-add-an-option-to-enable-omemo-by-default-in-new-conv.patch
];
}
);
discord = super.discord.override { nss = self.nss; };
@ -21,9 +23,7 @@ let
notmuch = super.callPackage ./notmuch { inherit (super) notmuch; };
unstable = import sources.nixpkgs-unstable { inherit (self) config; };
nur = import sources.NUR {
nur = import sources.nur {
nurpkgs = self;
pkgs = self;
};
@ -85,4 +85,4 @@ let
(import ../trusted/pkgs { inherit super self; });
in
(pkgs.extend (import (sources.arc-nixexprs + "/overlay.nix"))).extend overlay
(pkgs.extend (import (sources.nixexprs + "/overlay.nix"))).extend overlay