athens/modules/dev/default.nix

41 lines
408 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; [
# Cloud
2023-02-15 12:13:26 -05:00
awscli2
2024-08-08 19:26:46 -04:00
google-cloud-sdk
doppler
2022-09-06 22:05:40 -04:00
2023-02-15 12:13:26 -05:00
# Git / CI
drone-cli
mr
tea
2024-02-27 18:28:22 -05:00
# NodeJS
2024-08-20 10:47:48 -04:00
bun
2024-02-27 18:28:22 -05:00
nodejs
2024-08-20 10:47:48 -04:00
pnpm
2024-02-27 18:28:22 -05:00
2024-06-18 21:50:22 -04:00
# Golang
go
2024-07-04 10:38:59 -04:00
# k8s
chart-testing
k9s
kind
kubectl
kubernetes-helm
2023-02-15 12:13:26 -05:00
# Nix
cachix
2024-08-02 13:27:23 -04:00
nixd
nixf
2023-02-15 12:13:26 -05:00
nixpkgs-fmt
2022-10-27 22:34:08 -04:00
# My stuff
2024-02-27 18:28:22 -05:00
homestar
2022-10-27 22:34:08 -04:00
workon
2022-09-06 22:05:40 -04:00
];
}