My Nix Configuration
2
fork

Configure Feed

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

at 7b1e53e5525db3d6d638cdb3e948ffe3ebe9d5b4 16 lines 333 B view raw
1{ lib, self, ... }: 2let 3 inherit (self) data; 4 strings = import ./strings.nix { inherit lib; }; 5in 6{ 7 flake = { 8 lib = { 9 caddy = import ./caddy.nix { inherit data lib; }; 10 secrets = import ./secrets.nix; 11 inherit data; 12 inherit strings; 13 inherit (strings) toPascalCase toUpperSnakeCase; 14 }; 15 }; 16}