diff options
author | Vincent Ambo <tazjin@google.com> | 2020-02-08T14·06+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-02-08T14·06+0000 |
commit | 7935957938fb4bd73b557e42fa828b1470979777 (patch) | |
tree | e7289865c0b38851172a292897e8dd897a2ae672 /web/blog/default.nix | |
parent | 8e9fb739582b5ed871522826ea145f4a9dac2777 (diff) |
refactor(web): Move nginx setup to //web/homepage r/487
The homepage is going to be the landing page for all content, whether it be blog posts or other stuff.
Diffstat (limited to 'web/blog/default.nix')
-rw-r--r-- | web/blog/default.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/web/blog/default.nix b/web/blog/default.nix index 1bc026bf2a8c..4fa97f2248ee 100644 --- a/web/blog/default.nix +++ b/web/blog/default.nix @@ -31,7 +31,7 @@ let posts = list post (import ./posts.nix); fragments = import ./fragments.nix args; - renderedBlog = pkgs.third_party.runCommandNoCC "tazjins-blog" {} '' + rendered = pkgs.third_party.runCommandNoCC "tazjins-blog" {} '' mkdir -p $out cp ${fragments.blogIndex posts} $out/index.html @@ -40,6 +40,7 @@ let "cp ${fragments.renderPost post} $out/${post.key}.html" ) posts)} ''; -in import ./nginx.nix (args // { - inherit posts renderedBlog; -}) +in { + inherit post posts rendered; + static = ./static; +} |