diff options
author | breezystatic77 | 2025-01-26 12:42:38 -0500 |
---|---|---|
committer | breezystatic77 | 2025-01-26 12:42:38 -0500 |
commit | 38a8771857ae1b366afb0952888eaa3c631df11e (patch) | |
tree | 5f342f3295ee6c54cbabd003b0a73660e5116f8b /devenv.nix |
initial commit
Diffstat (limited to 'devenv.nix')
-rw-r--r-- | devenv.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/devenv.nix b/devenv.nix new file mode 100644 index 0000000..234bd79 --- /dev/null +++ b/devenv.nix @@ -0,0 +1,12 @@ +{ + pkgs, + lib, + config, + inputs, + ... +}: let + dictionaryFile = import ./dictionary.nix {pkgs = pkgs;}; +in { + env.DICTIONARY_FILE_PATH = dictionaryFile; + languages.rust.enable = true; +} |