its for when you want to get like notifications for your reposts
2
fork

Configure Feed

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

build: add nix flake

dusk ad439ec8 490e6083

+88
+1
.gitignore
··· 1 1 bsky-repost-likes 2 + result
+61
flake.lock
··· 1 + { 2 + "nodes": { 3 + "flake-parts": { 4 + "inputs": { 5 + "nixpkgs-lib": "nixpkgs-lib" 6 + }, 7 + "locked": { 8 + "lastModified": 1748821116, 9 + "narHash": "sha256-F82+gS044J1APL0n4hH50GYdPRv/5JWm34oCJYmVKdE=", 10 + "owner": "hercules-ci", 11 + "repo": "flake-parts", 12 + "rev": "49f0870db23e8c1ca0b5259734a02cd9e1e371a1", 13 + "type": "github" 14 + }, 15 + "original": { 16 + "owner": "hercules-ci", 17 + "repo": "flake-parts", 18 + "type": "github" 19 + } 20 + }, 21 + "nixpkgs": { 22 + "locked": { 23 + "lastModified": 1749143949, 24 + "narHash": "sha256-QuUtALJpVrPnPeozlUG/y+oIMSLdptHxb3GK6cpSVhA=", 25 + "owner": "NixOS", 26 + "repo": "nixpkgs", 27 + "rev": "d3d2d80a2191a73d1e86456a751b83aa13085d7d", 28 + "type": "github" 29 + }, 30 + "original": { 31 + "owner": "NixOS", 32 + "ref": "nixos-unstable", 33 + "repo": "nixpkgs", 34 + "type": "github" 35 + } 36 + }, 37 + "nixpkgs-lib": { 38 + "locked": { 39 + "lastModified": 1748740939, 40 + "narHash": "sha256-rQaysilft1aVMwF14xIdGS3sj1yHlI6oKQNBRTF40cc=", 41 + "owner": "nix-community", 42 + "repo": "nixpkgs.lib", 43 + "rev": "656a64127e9d791a334452c6b6606d17539476e2", 44 + "type": "github" 45 + }, 46 + "original": { 47 + "owner": "nix-community", 48 + "repo": "nixpkgs.lib", 49 + "type": "github" 50 + } 51 + }, 52 + "root": { 53 + "inputs": { 54 + "flake-parts": "flake-parts", 55 + "nixpkgs": "nixpkgs" 56 + } 57 + } 58 + }, 59 + "root": "root", 60 + "version": 7 61 + }
+14
flake.nix
··· 1 + { 2 + inputs = { 3 + flake-parts.url = "github:hercules-ci/flake-parts"; 4 + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; 5 + }; 6 + 7 + outputs = inputs@{ flake-parts, ... }: 8 + flake-parts.lib.mkFlake { inherit inputs; } { 9 + systems = [ "x86_64-linux" ]; 10 + perSystem = { pkgs, ... }: { 11 + packages.default = pkgs.callPackage ./package.nix {}; 12 + }; 13 + }; 14 + }
+12
package.nix
··· 1 + { 2 + buildGoModule, 3 + ... 4 + }: 5 + buildGoModule (final: { 6 + pname = "bsky-repost-likes"; 7 + version = "main"; 8 + 9 + src = ./.; 10 + 11 + vendorHash = "sha256-nqBgpykQDR1lXO27oWH/lG3NVH31G6WKHRQKUZbjVUI="; 12 + })