Difference between revisions of "Dict"

From NixOS Wiki
Jump to: navigation, search
m (Add note to rebuild system after adding package to config.)
(Set server via /etc/dict.conf instead of per user.)
Line 6: Line 6:
  
 
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
 
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
environment.systemPackages = with pkgs; [
+
{
   dict
+
  environment = {
];
+
    etc."dict.conf".text = "server dict.org";
 +
    systemPackages = with pkgs; [ dict ];
 +
   };
 +
}
 
</nowiki>}}
 
</nowiki>}}
  
 
and rebuild your system.
 
and rebuild your system.
 
Run the following as your user:
 
 
<syntaxhighlight lang="bash">
 
echo 'server dict.org' > ~/.dictrc
 
</syntaxhighlight>
 
  
 
== Usage ==
 
== Usage ==

Revision as of 08:05, 8 July 2022

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