diff options
author | Vincent Ambo <mail@tazj.in> | 2020-06-26T19·28+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-06-26T19·33+0000 |
commit | 351ed4f044753bc4b1f3dcdc83b96a32f7dcaeeb (patch) | |
tree | 3b7040a87c393a399cade516a14a7bff64475747 /web | |
parent | a2cbbedc65c9200fd3c2a6a698366ac431cc153d (diff) |
fix(tazjin/homepage): Fix configuration settings after page moves r/1088
My personal pages have moved out of //web, and various changes were necessary to keep everything working. Change-Id: I2f81fdd8ba2ce2ce6fea7e329bbdcda6092cc8a6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/604 Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'web')
-rw-r--r-- | web/tvl/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/tvl/default.nix b/web/tvl/default.nix index 443986fbcaf9..552940cb5135 100644 --- a/web/tvl/default.nix +++ b/web/tvl/default.nix @@ -68,7 +68,7 @@ in runCommandNoCC "website" {} '' cp ${homepage} $out/index.html cp -r ${./static}/* $out/static - # Some assets are stolen from the blog - cp ${depot.web.homepage}/static/jetbrains-* $out/static - cp ${depot.web.homepage}/static/tazjin.css $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 '' |