From a29c6d88083a62e582e38ba0f55f82bfbc2b2263 Mon Sep 17 00:00:00 2001 From: jeff Date: Sun, 19 Apr 2026 12:39:42 -0600 Subject: [PATCH] Initial scaffold: README, .gitignore, dir skeleton Project: NixOS live USB that boots a Windows workstation into a headless "AI mode" with Ollama + CUDA + MinIO-backed model sync. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 16 ++++++++++++++++ README.md | 15 +++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fe056e0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Nix build outputs +result +result-* + +# Baked-in secrets / host-specific files copied at build time +keys/ + +# Editor noise +.direnv/ +.vscode/ +*.swp +.DS_Store + +# Do not commit the AI-CONFIG contents +AI-CONFIG/ +minio.env diff --git a/README.md b/README.md new file mode 100644 index 0000000..fe0dc6e --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# ai-kraken + +NixOS-based live USB that boots a Windows workstation (RTX 3080 Ti, 128GB RAM) into a +headless "AI mode" with Ollama, CUDA, and on-demand model sync from a LAN MinIO. +Windows install remains untouched. + +## Status + +Design phase. See `docs/specs/` for the current design document. + +## Quick links + +- Design doc: `docs/specs/2026-04-19-nixos-ai-live-usb-design.md` (pending) +- Implementation plan: `docs/plans/` (pending) +- Wiki: long-form notes, runbook, MinIO bucket layout conventions