From 2a1cf6ad8bbd9f183dfac02bb397c4e789a73f21 Mon Sep 17 00:00:00 2001 From: jmug Date: Wed, 30 Jul 2025 20:46:51 -0700 Subject: [PATCH] Fetch flake, init module. Signed-off-by: jmug --- flake.lock | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ go.mod | 3 +++ 2 files changed, 67 insertions(+) create mode 100644 flake.lock create mode 100644 go.mod diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..703802d --- /dev/null +++ b/flake.lock @@ -0,0 +1,64 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": [ + "systems" + ] + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1753844155, + "narHash": "sha256-w81jpZeM3AtYlTKIhT05p3IqvJRIHZPyp0Acgb6hXWc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "e44b8dc0882d66e2627a8ff252b04a22f4a629fd", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs", + "systems": "systems" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..85eae4e --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module code.jmug.me/jmug/amp-blog-agent + +go 1.24.5