Difference between revisions of "Dict"

From NixOS Wiki
Jump to: navigation, search
(Set server via /etc/dict.conf instead of per user.)
m (rollback unauthorized mass edits)
Tag: Rollback
 
(One intermediate revision by one other user not shown)
(No difference)

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