nix-config/dev/default.nix
2023-05-23 17:12:35 -04:00

19 lines
213 B
Nix

{ pkgs, ... }:
{
imports = [
./editorconfig
./nix
./npm
./rust
];
environment.systemPackages = with pkgs; [
marksman
gopls
lua-language-server
clang-tools
texlab
];
}