mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 08:45:02 +01:00
19 lines
437 B
Nix
19 lines
437 B
Nix
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
ansible
|
|
ansible-lint
|
|
awscli
|
|
certbot
|
|
colmena
|
|
dig
|
|
openssl
|
|
caddy
|
|
shellcheck
|
|
git-crypt
|
|
opentofu
|
|
wireguard-tools
|
|
python311Packages.zstandard
|
|
python311Packages.brotli
|
|
(import (builtins.fetchTarball "https://github.com/ryantm/agenix/archive/de96bd907d5fbc3b14fc33ad37d1b9a3cb15edc6.tar.gz") { }).agenix
|
|
];
|
|
}
|