nixos/modules/desktop/chat/pidgin/default.nix

16 lines
411 B
Nix
Raw Normal View History

2024-10-09 21:00:09 +04:00
{ outputs, options, config, lib, pkgs, ... }:
let cfg = config.modules.desktop.chat.pidgin;
in {
options.modules.desktop.chat.pidgin = { enable = lib.mkEnableOption false; };
config = lib.mkIf cfg.enable {
users.users.sako.packages = with pkgs;
2024-10-09 21:31:20 +04:00
[
(pidgin.override {
plugins =
[ pidginPackages.pidgin-otr pidginPackages.pidgin-indicator ];
})
];
2024-10-09 21:00:09 +04:00
};
}