WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at main 23 lines 581 B view raw
1{ 2 description = "atBB decentralized BB-style forum on AT Protocol"; 3 4 inputs = { 5 nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; 6 }; 7 8 outputs = { self, nixpkgs }: 9 let 10 supportedSystems = [ "x86_64-linux" "aarch64-linux" ]; 11 forAllSystems = nixpkgs.lib.genAttrs supportedSystems; 12 in 13 { 14 packages = forAllSystems (system: 15 let pkgs = nixpkgs.legacyPackages.${system}; 16 in { 17 default = pkgs.callPackage ./nix/package.nix { }; 18 } 19 ); 20 21 nixosModules.default = import ./nix/module.nix self; 22 }; 23}