fix code again

This commit is contained in:
zackartz 2024-05-05 17:19:11 -04:00
parent 375ed7d867
commit 25ca02da0a
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA

View file

@ -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: Now, lets add the package spec:
```nix ```nix
...
{ {
in { in {
# add packages :) # 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 ```nix
{ {
inputs = { inputs = {
... # all our previous definitions # all our previous definitions
blog.url = "github:zackartz/zmio"; blog.url = "github:zackartz/zmio";
}; };
... # ...
nixosConfigurations.pluto = nixpkgs_stable.lib.nixosSystem { nixosConfigurations.pluto = nixpkgs_stable.lib.nixosSystem {
specialArgs = {inherit inputs;}; specialArgs = {inherit inputs;};
modules = [ modules = [
... # previous modules # previous modules
inputs.blog.nixosModule.default inputs.blog.nixosModule
]; ];
}; };