Client-side, single user live journal backed by AT Protocol
0

Configure Feed

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

bunnylog / flake.nix
407 B 16 lines
1{ 2 description = "A very basic flake"; 3 4 inputs = { 5 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 6 }; 7 8 outputs = { self, nixpkgs }: let 9 system = "x86_64-linux"; 10 pkgs = import nixpkgs { inherit system; }; 11 in { 12 devShells.${system}.default = pkgs.mkShell { 13 buildInputs = with pkgs; [corepack nodejs-slim python3 typescript-language-server atproto-goat]; 14 }; 15 }; 16}