Skip to content
/ dendrix Public
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion dev/book/src/Dendritic.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,25 @@ As noted by Pol Dellaiera in [Flipping the Configuration Matrix](https://not-a-n
> the configuration is now structured around features, not hostnames. It is a shift in the axis of composition, essentially an inversion of configuration control. What may seem like a subtle change at first has profound implications for flexibility, reuse, and maintainability.

You will notice that you start naming your files around the `aspect`s (features) they define
instead of where they are applied.
instead of where they are specifically applied.

In the following example, the `scrolling-desktop` aspect is included accross different operating systems:
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corrected spelling of 'accross' to 'across'.

Suggested change
In the following example, the `scrolling-desktop` aspect is included accross different operating systems:
In the following example, the `scrolling-desktop` aspect is included across different operating systems:

Copilot uses AI. Check for mistakes.
On Linux, `flake.modules.nixos.scrolling-destop` might enable [`niri`](https://variety4me.github.io/niri_docs/) and on MacOS, `flake.modules.darwin.scrolling-desktop` might enable [`PaperWM.spoon`](https://github.com/mogenson/PaperWM.spoon).
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corrected spelling of 'scrolling-destop' to 'scrolling-desktop'.

Suggested change
On Linux, `flake.modules.nixos.scrolling-destop` might enable [`niri`](https://variety4me.github.io/niri_docs/) and on MacOS, `flake.modules.darwin.scrolling-desktop` might enable [`PaperWM.spoon`](https://github.com/mogenson/PaperWM.spoon).
On Linux, `flake.modules.nixos.scrolling-desktop` might enable [`niri`](https://variety4me.github.io/niri_docs/) and on MacOS, `flake.modules.darwin.scrolling-desktop` might enable [`PaperWM.spoon`](https://github.com/mogenson/PaperWM.spoon).

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use Apple's correct casing: 'macOS' instead of 'MacOS'.

Suggested change
On Linux, `flake.modules.nixos.scrolling-destop` might enable [`niri`](https://variety4me.github.io/niri_docs/) and on MacOS, `flake.modules.darwin.scrolling-desktop` might enable [`PaperWM.spoon`](https://github.com/mogenson/PaperWM.spoon).
On Linux, `flake.modules.nixos.scrolling-destop` might enable [`niri`](https://variety4me.github.io/niri_docs/) and on macOS, `flake.modules.darwin.scrolling-desktop` might enable [`PaperWM.spoon`](https://github.com/mogenson/PaperWM.spoon).

Copilot uses AI. Check for mistakes.

```nix
# ./modules/hosts.nix
{ inputs, ... }:
{
flake.nixosConfigurations.my-host = inputs.nixpkgs.lib.nixosSystem {
system = "aarm64-linux";
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid Nix system identifier; use 'aarch64-linux' instead of 'aarm64-linux'.

Suggested change
system = "aarm64-linux";
system = "aarch64-linux";

Copilot uses AI. Check for mistakes.
modules = with inputs.self.modules.nixos; [ ai ssh vpn mac-like-keyboard scrolling-desktop ];
};
flake.darwinConfigurations.my-host = inputs.nix-darwin.lib.darwinSystem {
system = "aarm64-darwin";
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid Nix system identifier; use 'aarch64-darwin' instead of 'aarm64-darwin'.

Suggested change
system = "aarm64-darwin";
system = "aarch64-darwin";

Copilot uses AI. Check for mistakes.
modules = with inputs.self.modules.darwin; [ ai ssh vpn scrolling-desktop ];
};
}
```

### Feature _Closures_

Expand Down
Loading