1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-11 17:23:38 +02:00
home-manager/modules/programs/pidgin.nix

35 lines
750 B
Nix
Raw Normal View History

2018-02-17 09:39:31 +01:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.pidgin;
2020-02-02 00:39:17 +01:00
in {
2018-02-17 09:39:31 +01:00
meta.maintainers = [ maintainers.rycee ];
options = {
programs.pidgin = {
enable = mkEnableOption "Pidgin messaging client";
package = mkOption {
type = types.package;
default = pkgs.pidgin;
defaultText = literalExample "pkgs.pidgin";
2018-02-17 09:39:31 +01:00
description = "The Pidgin package to use.";
};
plugins = mkOption {
2020-02-02 00:39:17 +01:00
default = [ ];
2018-02-17 09:39:31 +01:00
example = literalExample "[ pkgs.pidgin-otr pkgs.pidgin-osd ]";
description = "Plugins that should be available to Pidgin.";
};
};
};
config = mkIf cfg.enable {
home.packages = [ (cfg.package.override { inherit (cfg) plugins; }) ];
};
}