diff options
author | Azat Bahawi <azat@bahawi.net> | 2024-07-21 20:07:08 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2024-07-21 20:07:08 +0300 |
commit | b33b1ea8ef5d5511e34fed41ad9a8199d0d58331 (patch) | |
tree | 9195b87cbfc135a85b56f0a415efa23e504f8c40 /overlays.nix | |
parent | 2024-07-14 (diff) |
2024-07-21
Diffstat (limited to '')
-rw-r--r-- | overlays.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/overlays.nix b/overlays.nix index 8e774e2..9e12522 100644 --- a/overlays.nix +++ b/overlays.nix @@ -1,4 +1,7 @@ -_: { +{ lib, ... }: +with lib; +with packages; +{ default = final: prev: { bruh = prev.callPackage ./packages/bruh.nix { }; @@ -89,5 +92,8 @@ _: { withSystemVencord = false; withTTS = false; }; + + inherit (fromPR 328633 "sha256-TL0DkMGm0SXdkSRNa9LtpCFLgX3RLAqujTIJkW0nb+E=") soju; + inherit (fromPR 326898 "sha256-BLHeK1MNWQQXOwL2UkBj4OitBeg6D693lIKQbS+4hPk=") packcc; }; } |