Initial checkin

This commit is contained in:
2024-01-27 09:53:47 -08:00
commit bd7b557550
3 changed files with 77 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{
description = "Google Photo Uploader";
inputs = { gomod2nix.url = "github:nix-community/gomod2nix"; };
outputs = { self, gomod2nix, ... }: {
packages = rec {
default = google-photo-uploader;
google-photo-uploader =
import ./google-photo-uploader.nix { inherit gomod2nix; };
};
};
}