fix code again
This commit is contained in:
parent
375ed7d867
commit
25ca02da0a
1 changed files with 5 additions and 6 deletions
|
|
@ -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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue