athens/modules/dev/default.nix

29 lines
272 B
Nix
Raw Normal View History

2022-12-27 10:10:53 -05:00
{ pkgs, ... }:
2022-09-06 22:05:40 -04:00
{
environment.systemPackages = with pkgs; [
emacs
2022-12-26 21:33:53 -05:00
devenv
2022-09-06 22:05:40 -04:00
# Elixir
elixir
2022-09-23 18:39:33 -04:00
elixir_ls
2022-09-06 22:05:40 -04:00
# Golang
go
gopls
# Node/JS
deno
nodejs
yarn
# Rust
rustup
rust-analyzer
2022-10-27 22:34:08 -04:00
# My stuff
workon
2022-09-06 22:05:40 -04:00
];
}