diff --git a/modules/misc/news.nix b/modules/misc/news.nix index 07b7ea300..23f8f5b13 100644 --- a/modules/misc/news.nix +++ b/modules/misc/news.nix @@ -577,6 +577,13 @@ in become deprecated and removed in the future. ''; } + + { + time = "2018-02-19T21:45:26+00:00"; + message = '' + A new module is available: 'programs.pidgin' + ''; + } ]; }; } diff --git a/modules/modules.nix b/modules/modules.nix index 7e9e6dae7..3b5f705ab 100644 --- a/modules/modules.nix +++ b/modules/modules.nix @@ -39,6 +39,7 @@ let ./programs/man.nix ./programs/mercurial.nix ./programs/neovim.nix + ./programs/pidgin.nix ./programs/rofi.nix ./programs/ssh.nix ./programs/termite.nix diff --git a/modules/programs/pidgin.nix b/modules/programs/pidgin.nix new file mode 100644 index 000000000..534ee5f0c --- /dev/null +++ b/modules/programs/pidgin.nix @@ -0,0 +1,36 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.programs.pidgin; + +in + +{ + meta.maintainers = [ maintainers.rycee ]; + + options = { + programs.pidgin = { + enable = mkEnableOption "Pidgin messaging client"; + + package = mkOption { + type = types.package; + default = pkgs.pidgin; + defaultText = "pkgs.pidgin"; + description = "The Pidgin package to use."; + }; + + plugins = mkOption { + default = []; + 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; }) ]; + }; +}