blob: 234bd79b05a56604c23a05a047175f795826285f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{
pkgs,
lib,
config,
inputs,
...
}: let
dictionaryFile = import ./dictionary.nix {pkgs = pkgs;};
in {
env.DICTIONARY_FILE_PATH = dictionaryFile;
languages.rust.enable = true;
}
|