tracks lexicons and how many times they appeared on the jetstream
3
fork

Configure Feed

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

at a4dd7621f5b3a5a3136d7e187caa90ac38c6a402 20 lines 577 B view raw
1{ 2 inputs.parts.url = "github:hercules-ci/flake-parts"; 3 inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 4 5 outputs = inp: 6 inp.parts.lib.mkFlake {inputs = inp;} { 7 systems = ["x86_64-linux"]; 8 perSystem = { 9 pkgs, 10 config, 11 ... 12 }: { 13 packages.client-modules = pkgs.callPackage ./nix/client-modules.nix { }; 14 packages.client = pkgs.callPackage ./nix/client.nix { 15 inherit (config.packages) client-modules; 16 }; 17 packages.server = pkgs.callPackage ./nix/server.nix { }; 18 }; 19 }; 20}