gitwatch-rs 0.1.1

CLI to watch a git repo and automatically commit changes
Documentation
# based on https://github.com/srid/rust-nix-template

{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
    flake-parts.url = "github:hercules-ci/flake-parts";
    flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
    systems.url = "github:nix-systems/default";
    rust-flake.url = "github:juspay/rust-flake";
    rust-flake.inputs.nixpkgs.follows = "nixpkgs";
  };

  outputs =
    inputs:
    inputs.flake-parts.lib.mkFlake { inherit inputs; } {
      systems = import inputs.systems;

      imports = with builtins; map (fn: ./pkg/nix/${fn}) (attrNames (readDir ./pkg/nix));
      flake.modules.gitwatch = nix/service.nix;
    };
}