My Nix Configuration
2
fork

Configure Feed

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

at 2c3fa32346506d1b4fc95adb5eefa2a6a0a77a7e 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}