Skip to content

Commit 46878a2

Browse files
Pegasustblaggacao
authored andcommitted
chore: ref CI, change link integrity
1 parent b4e0dd9 commit 46878a2

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.github/workflows/gh-pages.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515

1616
- uses: nixbuild/nix-quick-install-action@v25
1717

18-
- run: (cd ./src/local && nix flake lock --update-input std)
19-
- run: (cd ./src/tests && nix flake lock --update-input std)
20-
- run: nix store add-path --name source .
18+
- name: Update subflake references
19+
run: ./.github/workflows/update-subflake.sh
20+
2121
- run: nix develop .#book -c mdbook build ./docs
2222

2323
- name: Deploy

docs/guides/envrc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ direnv: Watching: cells/local/shells (recursively)
2727
For reference, the above example loads the `default` devshell from:
2828

2929
```nix
30-
{{#include ../../cells/local/shells.nix}}
30+
{{#include ../../src/local/shells.nix}}
3131
```

docs/reference/blocktypes.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,43 +13,43 @@ Actions according to the needs of your project.
1313
## Arion
1414

1515
```nix
16-
{{#include ../../lib/blockTypes/arion.nix}}
16+
{{#include ../../src/std/fwlib/blockTypes/arion.nix}}
1717
```
1818

1919
## Runnables (todo: vs installables)
2020

2121
```nix
22-
{{#include ../../lib/blockTypes/runnables.nix}}
22+
{{#include ../../src/std/fwlib/blockTypes/runnables.nix}}
2323
```
2424

2525
## Installables (todo: vs runnables)
2626

2727
```nix
28-
{{#include ../../lib/blockTypes/installables.nix}}
28+
{{#include ../../src/std/fwlib/blockTypes/installables.nix}}
2929
```
3030

3131
## Pkgs
3232

3333
```nix
34-
{{#include ../../lib/blockTypes/pkgs.nix}}
34+
{{#include ../../src/std/fwlib/blockTypes/pkgs.nix}}
3535
```
3636

3737
## Devshells
3838

3939
```nix
40-
{{#include ../../lib/blockTypes/devshells.nix}}
40+
{{#include ../../src/std/fwlib/blockTypes/devshells.nix}}
4141
```
4242

4343
## Nixago
4444

4545
```nix
46-
{{#include ../../lib/blockTypes/nixago.nix}}
46+
{{#include ../../src/std/fwlib/blockTypes/nixago.nix}}
4747
```
4848

4949
## Containers
5050

5151
```nix
52-
{{#include ../../lib/blockTypes/containers.nix}}
52+
{{#include ../../src/std/fwlib/blockTypes/containers.nix}}
5353
```
5454

5555
## Terra
@@ -60,25 +60,25 @@ Block type for managing [Terranix] configuration for [Terraform].
6060
[Terraform]: https://www.terraform.io/
6161

6262
```nix
63-
{{#include ../../src/blocktypes/terra.nix}}
63+
{{#include ../../src/std/fwlib/blockTypes/terra.nix}}
6464
```
6565

6666
## Data
6767

6868
```nix
69-
{{#include ../../lib/blockTypes/data.nix}}
69+
{{#include ../../src/std/fwlib/blockTypes/data.nix}}
7070
```
7171

7272
## Functions
7373

7474
```nix
75-
{{#include ../../lib/blockTypes/functions.nix}}
75+
{{#include ../../src/std/fwlib/blockTypes/functions.nix}}
7676
```
7777

7878
## Anything
7979

8080
_Note: while the implementation is the same as `functions`, the semantics are different. Implementations may diverge in the future._
8181

8282
```nix
83-
{{#include ../../lib/blockTypes/anything.nix}}
83+
{{#include ../../src/std/fwlib/blockTypes/anything.nix}}
8484
```

docs/tutorials/hello-moon/Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Let's start with the `cell.devshells` Cell Block and work our way backwards to t
6969
> Instead, we gently hint at the locality by just referring them via the `cell` context.
7070
7171
```nix
72-
{{#include ./nix/local/devshells.nix}}
72+
{{#include ./nix/_automation/devshells.nix}}
7373
```
7474

7575
The `nixago = [];` option in this definition is a special integration provided by the [Standard's `devshell`-wrapper (`std.lib.mkShell`)][devshell-wrapper].
@@ -85,7 +85,7 @@ As we have seen above, the `nixago` option in the `cell.devshells` Cell Block re
8585
While you can explore `lib.cfg` [here][lib-cfg], let's now have a closer look at `cell.nixago`:
8686

8787
```nix
88-
{{#include ./nix/local/nixago.nix}}
88+
{{#include ./nix/_automation/nixago.nix}}
8989
```
9090

9191
In this Cell Block, we have been modifying some built-in convenience `lib.cfg.*` pebbles.

0 commit comments

Comments
 (0)