···142142143143```
144144145145+### User Peers Configuration
146146+147147+A user `alice` can provide configurations for other users in the same system,
148148+either by name or for all of them (exluding alice itself).
149149+150150+```nix
151151+den.ctx.user.includes = [ den._.mutual-provider ];
152152+153153+den.aspects.alice = {
154154+ provides.bob = { homeManager.programs.vim.enable = true; };
155155+ provides.to-users = { user, ... }: {
156156+ homeManager.programs.tmux.enable = lib.elem user.userName [ "carl" "david" ];
157157+ };
158158+};
159159+```
160160+161161+### Standalone HomeManager - Host Specific Configuration
162162+163163+If you have two standalone homes sharing same user aspect, you can provide host specific
164164+configuration even if the Host is not a NixOS system managed by you.
165165+166166+```nix
167167+den.ctx.home.includes = [ den._.mutual-provider ];
168168+169169+den.homes.x86_64-linux."tux@igloo" = {};
170170+den.homes.x86_64-linux."tux@iceberg" = {};
171171+172172+den.aspects.tux = {
173173+ homeManager.programs.vim.enable = true; # tux on ALL homes and hosts.
174174+175175+ provides.igloo = {
176176+ homeManager.programs.helix.enable = true; # ONLY at igloo
177177+ };
178178+179179+ provides.iceberg = {
180180+ homeManager.programs.emacs.enable = true; # ONLY at iceberg
181181+ };
182182+};
183183+```