diff --git a/modules/services/homepage/default.nix b/modules/services/homepage/default.nix index 10e7be5..aca5bd3 100644 --- a/modules/services/homepage/default.nix +++ b/modules/services/homepage/default.nix @@ -159,6 +159,14 @@ in { } ]; } + { + Wishthis = [ + { + icon = "https://wishthis.online/src/assets/img/favicon/favicon-32x32.png"; + href = "https://wishthis.online"; + } + ]; + } { Amazon = [ { diff --git a/modules/services/wishthis/default.nix b/modules/services/wishthis/default.nix deleted file mode 100644 index e1340bc..0000000 --- a/modules/services/wishthis/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{config, ...}: let - volumePath = "/overseer/services"; -in { - virtualisation.oci-containers = { - backend = "podman"; - containers = { - "wishthis" = { - image = "hiob/wishthis:stable"; - extraOptions = [ - "--ip=10.88.0.15" - ]; - }; - "wishthis-db" = { - image = "mariadb:latest"; - extraOptions = [ - "--ip=10.88.0.16" - ]; - }; - }; - }; - - services.nginx = { - enable = true; - recommendedProxySettings = true; - virtualHosts = { - "wishlist.wanderingcrow.net" = { - forceSSL = true; - useACMEHost = "wishlist.wanderingcrow.net"; - locations."/" = { - proxyPass = "http://10.88.0.15:80"; - proxyWebsockets = true; - }; - }; - }; - }; -}