mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-01 20:46:12 +01:00
17 lines
387 B
Nix
17 lines
387 B
Nix
|
final: prev:
|
||
|
with final.lib;
|
||
|
{
|
||
|
magic_rb = prev.magic_rb or {} // {
|
||
|
bitlbee = (prev.bitlbee.override
|
||
|
{ enableLibPurple = true;
|
||
|
pidgin = prev.pidgin.override
|
||
|
{ plugins = with prev; [ purple-discord ];
|
||
|
};
|
||
|
}).overrideAttrs
|
||
|
(old:
|
||
|
{ configureFlags = old.configureFlags ++ singleton "--config=/tmp/bitlbee";
|
||
|
}
|
||
|
);
|
||
|
};
|
||
|
}
|