Difference between revisions of "Dict"

From NixOS Wiki
Jump to: navigation, search
(Add warning about the new wiki)
m (rollback unauthorized mass edits)
Tag: Rollback
 
Line 1: Line 1:
{{warning|1=You are reading an article on the deprecated unofficial wiki. For the up to date version of this article, see https://wiki.nixos.org/wiki/Dict.}}
 
 
 
The <code>dict</code> utility does network dictionary lookups from the command-line, it is part of the <code>dictd</code> software distribution.
 
The <code>dict</code> utility does network dictionary lookups from the command-line, it is part of the <code>dictd</code> software distribution.
  

Latest revision as of 11:04, 6 April 2024

The dict utility does network dictionary lookups from the command-line, it is part of the dictd software distribution.

Setup

Add `dict` to your list of packages in /etc/nixos/configuration.nix:

Breeze-text-x-plain.png
/etc/nixos/configuration.nix
{
  environment = {
    etc."dict.conf".text = "server dict.org";
    systemPackages = with pkgs; [ dict ];
  };
}


and rebuild your system.

Usage

To lookup a word, run, for example:

dict snowflake

See Also