1
0
forked from extern/nix-config
donovanglover-nix-config/dev/default.nix

19 lines
213 B
Nix
Raw Normal View History

2023-05-19 08:54:35 +02:00
{ pkgs, ... }:
2023-05-18 21:54:15 +02:00
{
imports = [
2023-05-19 01:12:30 +02:00
./editorconfig
2023-05-19 08:54:35 +02:00
./nix
2023-05-18 21:54:15 +02:00
./npm
2023-05-19 08:54:35 +02:00
./rust
];
environment.systemPackages = with pkgs; [
marksman
2023-05-23 23:12:35 +02:00
gopls
lua-language-server
clang-tools
texlab
2023-05-18 21:54:15 +02:00
];
}