24 lines
233 B
Nix
24 lines
233 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
emacs
|
||
|
|
||
|
# Elixir
|
||
|
elixir
|
||
|
|
||
|
# Golang
|
||
|
go
|
||
|
gopls
|
||
|
|
||
|
# Node/JS
|
||
|
deno
|
||
|
nodejs
|
||
|
yarn
|
||
|
|
||
|
# Rust
|
||
|
rustup
|
||
|
rust-analyzer
|
||
|
];
|
||
|
}
|