vps/shell.nix
2025-08-03 00:43:15 +02:00

17 lines
407 B
Nix

{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
packages = with pkgs; [
awscli
colmena
dig
openssl
caddy
shellcheck
git-crypt
opentofu
wireguard-tools
python311Packages.zstandard
python311Packages.brotli
nodejs
(import (builtins.fetchTarball "https://github.com/ryantm/agenix/archive/531beac616433bac6f9e2a19feb8e99a22a66baf.tar.gz") { }).agenix
];
}