diff options
author | Vincent Ambo <mail@tazj.in> | 2020-08-10T22·38+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-08-10T23·24+0000 |
commit | dc13e12b95fdc1e4458bc8ce95044da706acbaf6 (patch) | |
tree | 709730e6abad3d02f39178e69e737953dcc26bba /users/tazjin/homepage/default.nix | |
parent | 452b8c7e2338670826aab4f822b7d8ed1099cc81 (diff) |
feat(tazjin/homepage): Add Atom feed for blog posts r/1636
Change-Id: I9049e2cc3f5a2c491ccfad5595d60c01ad926e6d Reviewed-on: https://cl.tvl.fyi/c/depot/+/1712 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'users/tazjin/homepage/default.nix')
-rw-r--r-- | users/tazjin/homepage/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/users/tazjin/homepage/default.nix b/users/tazjin/homepage/default.nix index 9ac3112b0349..1b0044391b19 100644 --- a/users/tazjin/homepage/default.nix +++ b/users/tazjin/homepage/default.nix @@ -5,7 +5,7 @@ # elements for things such as blog posts and projects. # # Content for the blog is in //users/tazjin/blog instead of here. -{ depot, lib, ... }: +{ depot, lib, ... }@args: with depot; with nix.yants; @@ -65,8 +65,10 @@ let )); homepage = index ((map postToEntry users.tazjin.blog.posts) ++ (import ./entries.nix)); + atomFeed = import ./feed.nix args; in runCommandNoCC "website" {} '' mkdir $out cp ${homepage} $out/index.html + cp ${atomFeed} $out/feed.atom cp -r ${./static} $out/static '' |