Skip to content

Instantly share code, notes, and snippets.

@castilma
castilma / override
Last active October 22, 2017 00:10
trying to install pidgin with otr plugin. content of .config/nixpkgs/config.nix
{
packageOverrides = pkgs: rec {
pidgin-with-plugins = pkgs.pidgin-with-plugins.override {
plugins = [ pkgs.pidgin-otr ];};
};
}
-----
mcd@nixos:~$ nix-env -i pidgin-with-plugins