its for when you want to get like notifications for your reposts
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}