about summary refs log tree commit diff
path: root/web/tvl/default.nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-08-26T17·28+0300
committertazjin <mail@tazj.in>2021-08-26T17·46+0000
commitda0b3307565bdec0d67014b0de8be71d90789762 (patch)
treefac52b6defb99ba238859b830e2eb4adda75ce52 /web/tvl/default.nix
parent60b25b49de6107c1840cc7502dccdf5c00235849 (diff)
chore(web/tvl): Move TVL static assets out of //users/tazjin r/2788
It's now more like my personal homepage depends on TVL assets, not the
other way around.

Change-Id: Ifb9d61aa8ec2cab549e25de3a3dfbbd08f3d336c
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3435
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'web/tvl/default.nix')
-rw-r--r--web/tvl/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/web/tvl/default.nix b/web/tvl/default.nix
index e79c47b531..aa1fc225fe 100644
--- a/web/tvl/default.nix
+++ b/web/tvl/default.nix
@@ -41,11 +41,7 @@ let
     '';
   };
 in runCommandNoCC "website" {} ''
-  mkdir -p $out/static
+  mkdir $out
   cp ${homepage} $out/index.html
-  cp -r ${./static}/* $out/static
-
-  # Some assets are stolen from tazjin's blog
-  cp ${depot.users.tazjin.homepage}/static/jetbrains-* $out/static
-  cp ${depot.users.tazjin.homepage}/static/tazjin.css $out/static
+  cp -r ${depot.web.static} $out/static
 ''