athens/modules/dev/default.nix

46 lines
447 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
2023-02-15 12:13:26 -05:00
# Cloud
awscli2
pulumi-bin
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
2023-02-15 12:13:26 -05:00
# Git / CI
drone-cli
mr
tea
2022-09-06 22:05:40 -04:00
# Golang
go
gopls
2023-02-15 12:13:26 -05:00
# Nix
cachix
niv
nixfmt
nixpkgs-fmt
rnix-lsp
2022-09-06 22:05:40 -04:00
# Node/JS
deno
nodejs
yarn
# Rust
rustup
rust-analyzer
2022-10-27 22:34:08 -04:00
# My stuff
workon
2023-03-15 15:56:51 -04:00
fission-cli
carmirror
2022-09-06 22:05:40 -04:00
];
}