Skip to content

Commit e16207f

Browse files
nicdumzmergify[bot]
authored andcommitted
Various formatting. Struggle with mdformat :/
1 parent 5fe0eec commit e16207f

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

docs/model.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ reasonable redundant replicas, depending on the importance of this data.
4848

4949
If you don't back this up or don't test your recovery story? You lose this information.
5050

51-
In modern systems with many "Cloud Sync" options, you have surprisingly little original data with your
52-
systems as primary hosts. Aside: it might be worth questioning if you _really_ need or want to be the
53-
main stakeholder for this data or if a service may do this better for you.
51+
In modern systems with many "Cloud Sync" options, you have surprisingly little original data with
52+
your systems as primary hosts. Aside: it might be worth questioning if you _really_ need or want to
53+
be the main stakeholder for this data or if a service may do this better for you.
5454

5555
Note: in the case of Cloud backed-up data, I consider the local copies of this data "cache" and not
5656
"data".

docs/requirements.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ A brief list of requirements so we understand what the solution will look like:
44

55
- [Configuration](model.md#configuration) MUST be versioned publicly.
66

7-
* Versioned for all the goodness that comes with it (tracking why a particular changes landed,
8-
when, in which context.)
9-
* I want to be part of an open ecosystem. I want to contribute to the set of configurations that
10-
Internet strangers can look up on GitHub and learn from. (`"path:*.nix something"` is a regular
11-
GitHub search query of mine when I develop on Nix / NixOS).
7+
- Versioned for all the goodness that comes with it (tracking why a
8+
particular changes landed, when, in which context.)
9+
- I want to be part of an open ecosystem. I want to contribute to the set
10+
of configurations that Internet strangers can look up on GitHub and learn
11+
from. (`"path:*.nix something"` is a regular GitHub search query of mine
12+
when I develop on Nix / NixOS).
13+
1214
- System deployments or new machine installs MUST be
1315
[reproducible](https://en.wikipedia.org/wiki/Reproducible_builds) and deterministic.
1416

15-
* Importantly, if I deploy my system at a given Git revision, I get exactly the same output
16-
everytime. This allows for trivial pain-free rollbacks.
17+
- Importantly, if I deploy my system at a given Git revision, I get exactly the same output everytime. This allows for trivial pain-free rollbacks.
18+
1719
- Updates (security updates, OS updates, individual software version updates) MUST not break my
1820
systems.
1921

20-
* Critical security updates MUST apply at least weekly.
21-
* If a new version of a dependency becomes incompatible with my configuration, the `deploy` step
22-
SHOULD fail before changing my systems. When this is not feasible, rollbacks to an earlier Git
23-
revision MUST be a viable recovery path.
22+
- Critical security updates MUST apply at least weekly.
23+
- If a new version of a dependency becomes incompatible with my configuration, the `deploy` step SHOULD fail before changing my systems. When this is not feasible, rollbacks to an earlier Git revision MUST be a viable recovery path.
2424

2525
Non-functional:
2626

flake.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@
8686
".editorconfig"
8787
".envrc"
8888
"LICENSE"
89+
# TODO: fix me
90+
"docs/*.md"
8991
];
9092
programs = {
9193
deadnix.enable = true;
@@ -94,9 +96,7 @@
9496
enable = true;
9597
package = channels.nixpkgs.mdformat.withPlugins (
9698
p: with p; [
97-
mdformat-gfm
98-
# TODO: broken in 25.05
99-
# mdformat-gfm-alerts
99+
mdformat-mkdocs
100100
]
101101
);
102102
settings.wrap = 100;

0 commit comments

Comments
 (0)