dot.nix/hosts/nixos/proxy/config/cloudflared.nix
Chris Toph 72ce184bd4 Refactor and reorganize cloud and proxy configs
- Introduces new modules for cloud, backup, and NFS services
- Removes deprecated Caddy and cloudflared configs
- Migrate /pool from SSHFS to NFS
- Migrate filerun and SnapRAID configurations to cloud only for better modularity
2025-04-29 11:14:59 -04:00

15 lines
331 B
Nix

{ config, ... }:
{
config.virtualisation.oci-containers.containers.cloudflared = {
image = "docker.io/wisdomsky/cloudflared-web:latest";
autoStart = true;
extraOptions = [
"--network=host"
"--pull=always"
];
hostname = "cloudflared";
volumes = [
"/etc/cloudflared:/config"
];
};
}