Social Annotations in the Atmosphere
15
fork

Configure Feed

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

add beads

+74 -3
+71 -2
flake.lock
··· 1 1 { 2 2 "nodes": { 3 + "beads": { 4 + "inputs": { 5 + "flake-utils": "flake-utils", 6 + "nixpkgs": "nixpkgs" 7 + }, 8 + "locked": { 9 + "lastModified": 1762659214, 10 + "narHash": "sha256-iZS2Hryrf+YatFNUg1f3YQEC9PPRmTKk+RFhGN/Vprg=", 11 + "owner": "steveyegge", 12 + "repo": "beads", 13 + "rev": "7d17ad5d7795870a4f170e03571ed6b1eac216e5", 14 + "type": "github" 15 + }, 16 + "original": { 17 + "owner": "steveyegge", 18 + "repo": "beads", 19 + "type": "github" 20 + } 21 + }, 3 22 "flake-utils": { 4 23 "inputs": { 5 24 "systems": "systems" 25 + }, 26 + "locked": { 27 + "lastModified": 1731533236, 28 + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", 29 + "owner": "numtide", 30 + "repo": "flake-utils", 31 + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", 32 + "type": "github" 33 + }, 34 + "original": { 35 + "owner": "numtide", 36 + "repo": "flake-utils", 37 + "type": "github" 38 + } 39 + }, 40 + "flake-utils_2": { 41 + "inputs": { 42 + "systems": "systems_2" 6 43 }, 7 44 "locked": { 8 45 "lastModified": 1731533236, ··· 20 57 }, 21 58 "nixpkgs": { 22 59 "locked": { 60 + "lastModified": 1760284886, 61 + "narHash": "sha256-TK9Kr0BYBQ/1P5kAsnNQhmWWKgmZXwUQr4ZMjCzWf2c=", 62 + "owner": "NixOS", 63 + "repo": "nixpkgs", 64 + "rev": "cf3f5c4def3c7b5f1fc012b3d839575dbe552d43", 65 + "type": "github" 66 + }, 67 + "original": { 68 + "owner": "NixOS", 69 + "ref": "nixos-unstable", 70 + "repo": "nixpkgs", 71 + "type": "github" 72 + } 73 + }, 74 + "nixpkgs_2": { 75 + "locked": { 23 76 "lastModified": 1760878510, 24 77 "narHash": "sha256-K5Osef2qexezUfs0alLvZ7nQFTGS9DL2oTVsIXsqLgs=", 25 78 "owner": "NixOS", ··· 36 89 }, 37 90 "root": { 38 91 "inputs": { 39 - "flake-utils": "flake-utils", 40 - "nixpkgs": "nixpkgs" 92 + "beads": "beads", 93 + "flake-utils": "flake-utils_2", 94 + "nixpkgs": "nixpkgs_2" 41 95 } 42 96 }, 43 97 "systems": { 98 + "locked": { 99 + "lastModified": 1681028828, 100 + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 101 + "owner": "nix-systems", 102 + "repo": "default", 103 + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 104 + "type": "github" 105 + }, 106 + "original": { 107 + "owner": "nix-systems", 108 + "repo": "default", 109 + "type": "github" 110 + } 111 + }, 112 + "systems_2": { 44 113 "locked": { 45 114 "lastModified": 1681028828, 46 115 "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
+3 -1
flake.nix
··· 4 4 inputs = { 5 5 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; 6 6 flake-utils.url = "github:numtide/flake-utils"; 7 + beads.url = "github:steveyegge/beads"; 7 8 }; 8 9 9 - outputs = { self, nixpkgs, flake-utils }: 10 + outputs = { self, nixpkgs, flake-utils, beads }: 10 11 flake-utils.lib.eachDefaultSystem (system: 11 12 let 12 13 pkgs = nixpkgs.legacyPackages.${system}; ··· 14 15 { 15 16 devShells.default = pkgs.mkShell { 16 17 buildInputs = with pkgs; [ 18 + beads.packages.${system}.deafault 17 19 bun 18 20 nodejs_22 19 21 pnpm