A better Rust ATProto crate
103
fork

Configure Feed

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

at aa87f30d21f0a72b628e093168cd3ace89aa3d8a 23 lines 426 B view raw
1{inputs, ...}: { 2 perSystem = { 3 config, 4 self', 5 pkgs, 6 lib, 7 ... 8 }: { 9 devShells.default = pkgs.mkShell { 10 name = "jacquard-shell"; 11 inputsFrom = [ 12 self'.devShells.rust 13 config.pre-commit.devShell # See ./nix/modules/pre-commit.nix 14 ]; 15 packages = with pkgs; [ 16 just 17 nixd # Nix language server 18 bacon 19 rust-analyzer 20 ]; 21 }; 22 }; 23}