From 224e641469dc65161b7b45546ea920355977734d Mon Sep 17 00:00:00 2001 From: hdh20267 Date: Thu, 18 Dec 2025 18:27:52 +0000 Subject: [PATCH] Add Quick Start --- Quick-Start.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Quick-Start.md diff --git a/Quick-Start.md b/Quick-Start.md new file mode 100644 index 0000000..1062543 --- /dev/null +++ b/Quick-Start.md @@ -0,0 +1,34 @@ +# Quick Start + +This page covers the minimum steps to use or administer an +Athenix-managed system. + +## End Users + +Update your system: + +```bash +update-system +``` + +If you use an external user configuration: + +```bash +sudo nixos-rebuild switch \ + --flake git+https://git.factory.uga.edu/UGA-Innovation-Factory/athenix.git \ + --impure +``` + +## Administrators + +Typical workflow: + +```bash +vim inventory.nix +nix flake check +nix fmt +git commit -am "Describe changes" +git push +``` + +Users receive updates via `update-system`.