diff --git a/.github/workflows/prebuild.yml b/.github/workflows/prebuild.yml
index a2bdb371..2757527e 100644
--- a/.github/workflows/prebuild.yml
+++ b/.github/workflows/prebuild.yml
@@ -34,6 +34,6 @@ jobs:
         with:
           name: lucasew-personal
           authToken: '${{ secrets.CACHIX_TOKEN }}'
-      - run: nix build .#release
+      - run: nix build .#release -L --keep-going
 
 
diff --git a/nix/nodes/common/nginx-root-domain.nix b/nix/nodes/common/nginx-root-domain.nix
index 43a39015..5f7b4479 100644
--- a/nix/nodes/common/nginx-root-domain.nix
+++ b/nix/nodes/common/nginx-root-domain.nix
@@ -211,8 +211,8 @@ in
 {
   environment.etc."rootdomain/index.html".source = pkgs.writeText "template.html" template;
   environment.etc."rootdomain/favicon.ico".source = pkgs.fetchurl {
-    url = "https://nixos.org/favicon.ico";
-    sha256 = "sha256-5inMf6x/pZ3E2UVz5+Z/N8Ic/2uV2jhrVeD111uK/Jg=";
+    url = "https://search.nixos.org/images/nix-logo.png";
+    hash = "sha256-4wRQyZ6CPOahELEvTY0h+7c6F1PPA6NvXGKBeDI/P8M=";
   };
 
   services.nginx.virtualHosts."${config.networking.hostName}" = {