A better Rust ATProto crate
103
fork

Configure Feed

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

at b5cc9b35e38e24e1890ae55e700dcfad0d6d433a 14 lines 265 B view raw
1{ inputs, ... }: 2{ 3 imports = [ 4 (inputs.git-hooks + /flake-module.nix) 5 ]; 6 perSystem = { config, self', pkgs, lib, ... }: { 7 pre-commit.settings = { 8 hooks = { 9 nixpkgs-fmt.enable = true; 10 rustfmt.enable = true; 11 }; 12 }; 13 }; 14}