mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-06 14:08:54 +01:00
19 lines
213 B
Nix
19 lines
213 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./editorconfig
|
|
./nix
|
|
./npm
|
|
./rust
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
marksman
|
|
gopls
|
|
lua-language-server
|
|
clang-tools
|
|
texlab
|
|
];
|
|
}
|