diff --git a/hosts/droppie/droppie.nix b/hosts/droppie/droppie.nix index 2273d6d2..8c561040 100644 --- a/hosts/droppie/droppie.nix +++ b/hosts/droppie/droppie.nix @@ -34,13 +34,12 @@ in { ]; services.ddclient = { - enable = true; + enable = false; ipv6 = true; domains = ["backup.b12f.io"]; server = "ddns.hosting.de"; username = "b12f"; - protocol = "dyndns2"; - use = "web, web=https://ipcheck-ds.wieistmeineip.de/callback/, web-skip='\\\\(\\\\{\"ip\":\"'"; + use = "web, web=https://ipcheck-ds.wieistmeineip.de/callback/, web-skip='ip\":\"'"; passwordFile = "/run/agenix/dyndns-droppie.key"; }; diff --git a/hosts/droppie/nextcloud-web-tunnel.nix b/hosts/droppie/nextcloud-web-tunnel.nix index dc17b8af..25574c55 100644 --- a/hosts/droppie/nextcloud-web-tunnel.nix +++ b/hosts/droppie/nextcloud-web-tunnel.nix @@ -17,7 +17,7 @@ in { }; serviceConfig = { Type = "simple"; - ExecStart = "${pkgs.openssh}/bin/ssh -vvv -g -N -T -o 'ServerAliveInterval 10' -o 'ExitOnForwardFailure yes' -R 127.0.0.1:22022:localhost:22 root@cloud.pub.solar"; + ExecStart = "${pkgs.openssh}/bin/ssh -vvv -g -N -T -o ServerAliveInterval=10 -o ExitOnForwardFailure=yes -R 127.0.0.1:22022:localhost:22 root@cloud.pub.solar"; User = psCfg.user.name; Group = "users"; Restart = "always";