A better Rust ATProto crate
103
fork

Configure Feed

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

at 7539d2e01b0f64f2d86213cdb74d14d43fa8a4b5 23 lines 462 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}