From 25ca02da0a16d6a9eacadf5158f0279450095774 Mon Sep 17 00:00:00 2001 From: zackartz Date: Sun, 5 May 2024 17:19:11 -0400 Subject: [PATCH] fix code again --- src/content/blog/deploy-astro-on-nixos.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/content/blog/deploy-astro-on-nixos.md b/src/content/blog/deploy-astro-on-nixos.md index 936e7e9..cdd4014 100644 --- a/src/content/blog/deploy-astro-on-nixos.md +++ b/src/content/blog/deploy-astro-on-nixos.md @@ -60,7 +60,6 @@ I use [pnpm](https://pnpm.io) as my package manager of choice, and as such we ha Now, lets add the package spec: ```nix - ... { in { # add packages :) @@ -73,7 +72,7 @@ Now, lets add the package spec: }; }); - ... + # ... }; } ``` @@ -155,18 +154,18 @@ After adding the repo of my blog project to my server's flake like this: ```nix { inputs = { - ... # all our previous definitions + # all our previous definitions blog.url = "github:zackartz/zmio"; }; - ... + # ... nixosConfigurations.pluto = nixpkgs_stable.lib.nixosSystem { specialArgs = {inherit inputs;}; modules = [ - ... # previous modules - inputs.blog.nixosModule.default + # previous modules + inputs.blog.nixosModule ]; };