Allows you to use Mastodon and Bluesky comments on your Lustre blog hexdocs.pm/chilp/
blog gleam lustre indieweb mastodon bluesky comments
1
fork

Configure Feed

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

at main 37 lines 721 B view raw
1{ 2 inputs = { 3 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; 4 utils.url = "github:numtide/flake-utils"; 5 }; 6 7 outputs = 8 { 9 self, 10 nixpkgs, 11 utils, 12 }: 13 utils.lib.eachDefaultSystem ( 14 system: 15 let 16 pkgs = import nixpkgs { inherit system; }; 17 in 18 { 19 devShells.default = pkgs.mkShell { 20 buildInputs = with pkgs; [ 21 gleam 22 erlang_28 23 rebar3 24 bun 25 tailwindcss_4 26 just 27 ]; 28 29 shellHook = '' 30 echo " Welcome!" 31 # just --list # No just recipes yet. 32 # echo "Use just to run them." 33 ''; 34 }; 35 } 36 ); 37}