You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev/book/src/Dendritic.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ And `<aspect>` is the _cross-cutting concern_ or _feature_ that is being configu
13
13
one or more of these classes.
14
14
15
15
> [!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.
17
17
> See [No Dependencies](#no-dependencies).
18
18
19
19
### 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
23
23
24
24
```nix
25
25
# modules/ssh.nix -- like every other file inside modules, this is a flake-parts module.
26
-
{ inputs, config, ... }: let
26
+
{ inputs, config, ... }: let
27
27
scpPort = 2277; # let-bindings or custom flake-parts options communicate values across classes
28
28
in {
29
29
flake.modules.nixos.ssh = {
@@ -173,8 +173,6 @@ On Linux, `flake.modules.nixos.scrolling-desktop` might enable [`niri`](https://
173
173
}
174
174
```
175
175
176
-
177
-
178
176
### Feature _Closures_
179
177
180
178
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.
203
201
204
202
### No dependencies
205
203
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.
207
205
208
206
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.
209
207
210
208
You are free and encouraged to explore new ways of doing or wiring Dendritic setups. Be sure to share your insights with the community.
211
209
212
210
Because all of this, there are many possible implementations of the Dendritic pattern.
0 commit comments