nixpkgs/home/modules/programs/my-pidgin.nix
Daniel Siepmann 84f9d32366
Use native signal desktop app again
As the pidgin integration is failing.
I no longer can register pidgin with my signal app.
2022-11-23 10:37:01 +01:00

39 lines
919 B
Nix

{ config, pkgs, ... }:
{
config = {
programs.pidgin = {
enable = true;
plugins = [
# UI
pkgs.pidgin-window-merge
# Protocols
pkgs.purple-slack
(pkgs.callPackage ./../../packages/purple-mattermost { })
(pkgs.callPackage ./../../packages/purple-microsoft-teams { })
# System integration
(pkgs.callPackage ./../../packages/purple-libnotify { })
(pkgs.callPackage ./../../packages/purple-events { }) # Dependency
];
};
home.file = {
pidginGtkRc = {
target = ".purple/gtkrc-2.0";
source = ./../../files/purple/gtkrc-2.0;
};
pidginSmilies = {
target = ".purple/smileys/my-own";
source = ./../../files/purple/smileys;
};
pidginTheme = {
target = ".purple/themes/my-own";
source = ./../../files/purple/themes/my-own;
};
};
};
}