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
reusable dedritic nix modules configuration distribution

Update README.md

authored by oeiuwq.com and committed by

GitHub cd12c0b4 10a6834d

+4 -2
+4 -2
README.md
··· 26 26 The following example just tries to show a facet structure and what it can do. 27 27 28 28 Syntax here is that of [`flake.aspects`](https://github.com/vic/flake-aspects). 29 - resolved modules are be available at `flake.modules.<class>.niri-desktop` 30 - but people can also use `flake.aspects.niri-desktop` if desired (eg, as an aspect dependency). 29 + resolved modules are be available at `flake.modules.<class>.niri` 30 + but people can also use `flake.aspects.niri` if desired (eg, as an aspect dependency). 31 31 32 32 ```nix 33 33 # facets/niri.nix ··· 78 78 { inputs, ... }: 79 79 { 80 80 imports = [ inputs.denful.modules.flake.niri ]; 81 + 81 82 flake.aspects.my-laptop = {aspects, ...}: { 83 + # features of all facets that contribute to the anarchy aspect 82 84 includes = [ aspects.anarchy ]; 83 85 }; 84 86 }