mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
bd11e2c5e6
Instead use the new function `literalExpression`. See https://github.com/NixOS/nixpkgs/pull/136909
34 lines
756 B
Nix
34 lines
756 B
Nix
{ 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 = literalExpression "pkgs.pidgin";
|
|
description = "The Pidgin package to use.";
|
|
};
|
|
|
|
plugins = mkOption {
|
|
default = [ ];
|
|
example = literalExpression "[ 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; }) ];
|
|
};
|
|
}
|