Resolve your Bluesky avatar with a human URL silhouette.town
atproto deno
at main 17 lines 324 B view raw
1{ 2 inputs = { 3 utils.url = "github:numtide/flake-utils"; 4 }; 5 outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem (system: 6 let 7 pkgs = nixpkgs.legacyPackages.${system}; 8 in 9 { 10 devShell = pkgs.mkShell { 11 buildInputs = with pkgs; [ 12 deno 13 ]; 14 }; 15 } 16 ); 17}