Generate flake.nix from module options. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ dendrix.oeiuwq.com/Dendritic.html
dendritic nix inputs
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 9 lines 214 B view raw
1{ config, lib, ... }: 2{ 3 perSystem = 4 { pkgs, ... }: 5 { 6 packages = lib.mapAttrs (_: f: f pkgs) config.flake-file.apps; 7 checks.check-flake-file = config.flake-file.check-flake-file pkgs; 8 }; 9}