Unverified Commit dcd4691c authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Add cloudflare ddns to module list (#463976)

parents 0874a741 15e8c15c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1123,6 +1123,7 @@
  ./services/networking/chisel-server.nix
  ./services/networking/cjdns.nix
  ./services/networking/clatd.nix
  ./services/networking/cloudflare-ddns.nix
  ./services/networking/cloudflare-dyndns.nix
  ./services/networking/cloudflare-warp.nix
  ./services/networking/cloudflared.nix
+4 −2
Original line number Diff line number Diff line
@@ -22,9 +22,8 @@ in
      description = ''
        Path to a file containing the Cloudflare API authentication token.
        The file content should be in the format `CLOUDFLARE_API_TOKEN=YOUR_SECRET_TOKEN`.
        The service user `${cfg.user}` needs read access to this file.
        The service user needs read access to this file.
        Ensure permissions are secure (e.g., `0400` or `0440`) and ownership is appropriate
        (e.g., `owner = root`, `group = ${cfg.group}`).
        Using `CLOUDFLARE_API_TOKEN` is preferred over the deprecated `CF_API_TOKEN`.
      '';
      example = "/run/secrets/cloudflare-ddns-token";
@@ -324,4 +323,7 @@ in
      };
    };
  };
  meta.maintainers = with lib.maintainers; [
    shokerplz
  ];
}
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ buildGoModule (finalAttrs: {
    homepage = "https://github.com/favonia/cloudflare-ddns";
    mainProgram = "ddns";
    license = licenses.asl20;
    maintainers = [ ];
    maintainers = with lib.maintainers; [ shokerplz ];
    platforms = platforms.unix ++ platforms.darwin;
  };
})