From 848cb4c5c79a63aa7c6c8070fce8189cd9475d9b Mon Sep 17 00:00:00 2001 From: zackartz Date: Sun, 5 May 2024 16:54:16 -0400 Subject: [PATCH] add blog title --- src/content/blog/01.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/content/blog/01.md b/src/content/blog/01.md index 614820a..5c80066 100644 --- a/src/content/blog/01.md +++ b/src/content/blog/01.md @@ -1,3 +1,10 @@ +--- +title: "Deploying an Astro project on NixOS" +description: "NixOS does things differently, how hard is it to configure an Astro Project?" +pubDate: "May 05 2024" +heroImage: "/blog-placeholder-3.jpg" +--- + # Deploying an Astro project on NixOS [Nix](https://nixos.org) is an incredible project and has completely change the way I think about configuring linux and macOS environments. Recently, I moved my personal server from Ubuntu to NixOS to match my desktop environment. ([dotfiles here!](https://github.com/zackartz/nixos-dots)). In doing so, I realized I needed to move this blog over, too. I could simply deploy a docker container like I did before, but I think it would be interesting and informative to try and build a NixOS module around it. Hopefully you find it useful :)