Skip to content
/ dendrix Public

Commit e6c8c31

Browse files
committed
fmt
1 parent 38f79df commit e6c8c31

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

dev/book/src/Dendritic.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ And `<aspect>` is the _cross-cutting concern_ or _feature_ that is being configu
1313
one or more of these classes.
1414

1515
> [!NOTE]
16-
> Dendritic is a configuration *pattern* - a way-of-doing-. Not a library nor a framework.
16+
> Dendritic is a configuration _pattern_ - a way-of-doing-. Not a library nor a framework.
1717
> See [No Dependencies](#no-dependencies).
1818
1919
### Example of a dendritic configuration.
@@ -23,7 +23,7 @@ As an example of what a dendritic nix config looks like, suppose we want to conf
2323

2424
```nix
2525
# modules/ssh.nix -- like every other file inside modules, this is a flake-parts module.
26-
{ inputs, config, ... }: let
26+
{ inputs, config, ... }: let
2727
scpPort = 2277; # let-bindings or custom flake-parts options communicate values across classes
2828
in {
2929
flake.modules.nixos.ssh = {
@@ -173,8 +173,6 @@ On Linux, `flake.modules.nixos.scrolling-desktop` might enable [`niri`](https://
173173
}
174174
```
175175

176-
177-
178176
### Feature _Closures_
179177

180178
By closure, we mean: everything that is needed for a given _feature_ to work is
@@ -203,15 +201,15 @@ or features should be decommissioned immediately/temporarily.
203201

204202
### No dependencies
205203

206-
> _Dendritic_ is a configuration *pattern* - a _way-of-doing_-, not a library nor a framework.
204+
> _Dendritic_ is a configuration _pattern_ - a _way-of-doing_-, not a library nor a framework.
207205
208206
The Dendritic repository has no code at all and any libraries mentioned on this document are mere recommendations and pointers to things other people using the Dendritic pattern has found useful.
209207

210208
You are free and encouraged to explore new ways of doing or wiring Dendritic setups. Be sure to share your insights with the community.
211209

212210
Because all of this, there are many possible implementations of the Dendritic pattern.
213211

214-
Some people like to use inline-style definitions:
212+
Some people like to use inline-style definitions:
215213

216214
```nix
217215
{ inputs, ... }:

0 commit comments

Comments
 (0)