- 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
15 lines
331 B
Nix
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"
|
|
];
|
|
};
|
|
}
|