cherry-pickable Dendritic modules to extend your config easily. like a lazyvim-distribution but for dendritic nix.
Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/
dendrix.oeiuwq.com/Dendritic.html
···2626The following example just tries to show a facet structure and what it can do.
27272828Syntax here is that of [`flake.aspects`](https://github.com/vic/flake-aspects).
2929-resolved modules are be available at `flake.modules.<class>.niri-desktop`
3030-but people can also use `flake.aspects.niri-desktop` if desired (eg, as an aspect dependency).
2929+resolved modules are be available at `flake.modules.<class>.niri`
3030+but people can also use `flake.aspects.niri` if desired (eg, as an aspect dependency).
31313232```nix
3333# facets/niri.nix
···7878{ inputs, ... }:
7979{
8080 imports = [ inputs.denful.modules.flake.niri ];
8181+8182 flake.aspects.my-laptop = {aspects, ...}: {
8383+ # features of all facets that contribute to the anarchy aspect
8284 includes = [ aspects.anarchy ];
8385 };
8486}