<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Documentation on Homie</title><link>https://homie.sh/docs/</link><description>Recent content in Documentation on Homie</description><generator>Hugo -- gohugo.io</generator><language>en</language><copyright>© 2026</copyright><atom:link href="https://homie.sh/docs/index.xml" rel="self" type="application/rss+xml"/><item><title>Quick start</title><link>https://homie.sh/docs/quickstart/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://homie.sh/docs/quickstart/</guid><description>&lt;p&gt;This walks through scaffolding a fresh Homie repo, putting your first
dotfile under management, and bootstrapping the same environment on a
second machine. About five minutes if you already have git + GitHub set
up.&lt;/p&gt;

&lt;h2 class="relative group"&gt;1. Install &lt;code&gt;hm&lt;/code&gt;
 &lt;div id="1-install-hm" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#1-install-hm" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;Grab the latest static binary from
&lt;a href="https://github.com/kurowski/homie/releases" target="_blank" rel="noreferrer"&gt;Releases&lt;/a&gt;. One file, no
runtime, no dependencies.&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-sh" data-lang="sh"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nv"&gt;ARCH&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;uname -m &lt;span class="p"&gt;|&lt;/span&gt; sed &lt;span class="s1"&gt;&amp;#39;s/x86_64/amd64/;s/aarch64/arm64/&amp;#39;&lt;/span&gt;&lt;span class="k"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;curl -fsSL -o /tmp/hm &lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="s2"&gt;&amp;#34;https://github.com/kurowski/homie/releases/latest/download/hm-linux-&lt;/span&gt;&lt;span class="si"&gt;${&lt;/span&gt;&lt;span class="nv"&gt;ARCH&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;chmod +x /tmp/hm
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;sudo mv /tmp/hm /usr/local/bin/hm
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;hm --version&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 class="relative group"&gt;2. Scaffold a user environment repo
 &lt;div id="2-scaffold-a-user-environment-repo" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#2-scaffold-a-user-environment-repo" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;hm init&lt;/code&gt; writes a starter repo — &lt;code&gt;homie.toml&lt;/code&gt;, a &lt;code&gt;bootstrap.sh&lt;/code&gt;, an
example dotfile, an example template, and a sample script — that&amp;rsquo;s
yours to grow into.&lt;/p&gt;</description></item><item><title>Commands</title><link>https://homie.sh/docs/commands/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://homie.sh/docs/commands/</guid><description>&lt;p&gt;Every Homie command except &lt;code&gt;hm init&lt;/code&gt; expects to be run from the root of
a user environment repo, or with &lt;code&gt;HM_REPO&lt;/code&gt; set to its path.&lt;/p&gt;
&lt;hr&gt;

&lt;h2 class="relative group"&gt;&lt;code&gt;hm init&lt;/code&gt;
 &lt;div id="hm-init" class="anchor"&gt;&lt;/div&gt;
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none"&gt;
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#hm-init" aria-label="Anchor"&gt;#&lt;/a&gt;
 &lt;/span&gt;
 
&lt;/h2&gt;
&lt;p&gt;Interactively scaffolds a brand new user environment repo. Run this once
on the first machine. Subsequent machines clone the result via
&lt;code&gt;bootstrap.sh&lt;/code&gt;.&lt;/p&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-sh" data-lang="sh"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;hm init ~/dotfiles&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;You can also pass flags non-interactively (useful in CI):&lt;/p&gt;</description></item><item><title>homie.toml</title><link>https://homie.sh/docs/config/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://homie.sh/docs/config/</guid><description>&lt;p&gt;Coming soon — full reference for every table and field in &lt;code&gt;homie.toml&lt;/code&gt;,
with per-distro override examples and the defaults &lt;code&gt;hm init&lt;/code&gt; writes.&lt;/p&gt;</description></item><item><title>Templates</title><link>https://homie.sh/docs/templates/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://homie.sh/docs/templates/</guid><description>&lt;p&gt;Coming soon — template syntax reference, the full Sprig function list,
the &lt;code&gt;hasTag&lt;/code&gt; helper, and a cookbook of common patterns (per-profile
blocks, OS-conditional config, defaults).&lt;/p&gt;</description></item><item><title>Compare</title><link>https://homie.sh/docs/compare/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://homie.sh/docs/compare/</guid><description>&lt;p&gt;Coming soon — the detailed comparison expanding on the matrix from the
homepage. Honest take on where each tool wins and where Homie fits.&lt;/p&gt;</description></item><item><title>Recipes</title><link>https://homie.sh/docs/recipes/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://homie.sh/docs/recipes/</guid><description>&lt;p&gt;Coming soon — concrete patterns: work-laptop with tagged secrets,
dotfiles + system fonts on Fedora, devcontainer setup, GitHub Codespaces,
shared-server (no root) installs, and more.&lt;/p&gt;</description></item><item><title>FAQ</title><link>https://homie.sh/docs/faq/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://homie.sh/docs/faq/</guid><description>&lt;p&gt;Coming soon — quick answers to &amp;ldquo;Why TOML?&amp;rdquo;, &amp;ldquo;Why symlinks?&amp;rdquo;, &amp;ldquo;Is this
Nix?&amp;rdquo;, &amp;ldquo;How does it differ from chezmoi?&amp;rdquo;, and other questions that
come up often.&lt;/p&gt;</description></item><item><title>Contributing</title><link>https://homie.sh/docs/contributing/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://homie.sh/docs/contributing/</guid><description>&lt;p&gt;Coming soon — how to add a new distro (&lt;code&gt;// TODO(contrib)&lt;/code&gt; markers in
source point at the gaps), how to add a package manager, how to run
the e2e harness locally, and the contribution process.&lt;/p&gt;</description></item></channel></rss>