mirror of
https://github.com/nmasur/dotfiles
synced 2025-10-12 02:33:16 +00:00
16 lines
317 B
Nix
16 lines
317 B
Nix
# Caddy with Cloudflare DNS
|
|
|
|
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
# Maintain a static version so that the plugin hash doesn't keep breaking
|
|
(pkgs.caddy.override {
|
|
version = "2.10.2";
|
|
}).withPlugins
|
|
{
|
|
plugins = [ "github.com/caddy-dns/cloudflare@v0.2.1" ];
|
|
hash = "sha256-AcWko5513hO8I0lvbCLqVbM1eWegAhoM0J0qXoWL/vI=";
|
|
}
|