diff --git a/corp/website/default.nix b/corp/website/default.nix index e0e457089..2a44d2099 100644 --- a/corp/website/default.nix +++ b/corp/website/default.nix @@ -9,18 +9,18 @@ let url = "https://tvl.su"; logo = "https://tvl.fyi/static/tvl-animated.svg"; }; -in depot.web.tvl.template { - title = "TVL (The Virus Lounge) - Software consulting"; - content = builtins.readFile ./content.md; - useUrls = true; # load resources from tvl.fyi - extraFooter = "\n|\n © ООО ТВЛ"; + index = depot.web.tvl.template { + title = "TVL (The Virus Lounge) - Software consulting"; + content = builtins.readFile ./content.md; + useUrls = true; # load resources from tvl.fyi + extraFooter = "\n|\n © ООО ТВЛ"; - # TODO(tazjin): The `.tvl-logo` thing can probably go in the shared CSS. - extraHead = '' - - + # TODO(tazjin): The `.tvl-logo` thing can probably go in the shared CSS. + extraHead = '' + + - ''; -} + ''; + }; +in pkgs.runCommandNoCC "corp-website" {} '' + mkdir $out + cp ${index} $out/index.html +''