Panix
The NixOS Deployment Experience You've Been Waiting For
A stateless TUI-driven orchestrator for bootstrapping and deploying multi-flake NixOS systems

[!WARNING]
The tool is currently in alpha stage. Expect breaking changes.
Demo

The Problem
NixOS promises a world where system configuration is declarative, reproducible, and version-controlled. A world where rollback is trivial - just switch a symlink. Where your development machine and production servers share the same configuration DNA.
This promise holds beautifully for a single machine. nixos-rebuild switch works. Your flake builds. Everything is good.
Then you need to deploy to a fleet.
Some machines already run NixOS. Others are bare metal, cloud instances, or legacy systems waiting to be converted. And suddenly you're not in the elegant world of Nix anymore - you're in the messy world of operations:
- Bootstrap complexity: Each non-NixOS machine needs kexec, disko, partitioning - orchestrated manually or via fragile scripts
- Visibility gaps: Is that build still running? Did kexec succeed? Which machine failed? The answers are buried in scrollback
- Secrets sprawl: Deploying sensitive files becomes an afterthought, handled via ad-hoc
rsync or scp commands
- No recovery path: When something fails halfway through, you're left reconnecting manually, parsing logs, guessing what went wrong
- Fleet heterogeneity: Multiple flakes, multiple configurations, machines in different states - no unified view
The ecosystem has tools for pieces of this puzzle. nixos-anywhere handles bootstrap. deploy-rs, Colmena (and many others) manage deployments. Each excels at its domain. But orchestration across these concerns - bootstrap, deploy, secrets, visibility, recovery - remains manual.
A lot of the tools that manage deployments also introduce themselves as a dependancy in your flake, making it possible to deploy only with their tool. Panix intentionaly does not require you to modify your flake for it.
The missing piece: an operator-focused interface.
Not a script that runs and exits. Not a single command whose output you scroll through (or it might not even provide them) to find the relevant information after it already failed. But an interactive, real-time view into your deployment pipeline - where you can see every phase, every machine, every failure, and act on them immediately.
This is the gap Panix fills.
What Panix Actually Is
Panix is a stateless, phase-oriented deployment orchestrator with a real-time TUI. Stateless means it holds no persistent state of its own - everything derives from your flake, your configuration file and actual state of the machines.
The TUI isn't a gimmick. It's a recognition that deployments are interactive processes. Things fail, networks hiccup, builds take time, etc. Having visibility into every phase of every machine - seeing the architecture detection, watching the closure transfer, observing the activation - transforms deployment from a "blindly run and pray" operation into a controlled, observable process.
The Phase Pipeline
Panix doesn't just "run a deployment". It executes a carefully ordered pipeline of phases, each with a specific scope and purpose:
Inspect → Build → Bootstrap → Transfer → Secrets → Activate
Scope-aware execution: The build phase runs once per configuration, not per machine. If three machines share the same nixosConfiguration, you build once. The closure is then transferred to all three machines independently in parallel.
Phase-by-phase breakdown:
| Phase |
Scope |
Purpose |
| Inspect |
Per-machine |
TCP reachability, SSH authentication, architecture detection, OS detection, generation discovery |
| Build |
Per-configuration |
Build config.system.build.toplevel closure via nix build --json |
| Bootstrap |
Per-machine |
kexec into NixOS installer (if needed), disko partitioning, encryption keys transfer (if provided) |
| Transfer |
Per-machine |
nix copy closure to target (handles /mnt for bootstrapped systems) |
| Secrets |
Per-machine |
Transfer files/directories with proper ownership via rsync |
| Activate |
Per-machine |
nixos-install (bootstrap) or switch-to-configuration switch (deploy) |
The TUI shows this unfolding in real-time:

When a phase fails, you don't have to restart everything. You inspect the logs, understand the failure, maybe do a quick fix in code or on remote, and press r to retry just the failed phases.
Or if it changed beyond a phase, just restart the whole workflow with ctrl+r without leaving the TUI.
Hierarchical Configuration Inheritance
Your infrastructure has natural hierarchies: flakes contain configurations, configurations contain machines. Panix's configuration model reflects this:
Root → Flake → Configuration → Machine
Attributes at each level cascade down, without overriding child attributes. Slices (tags, secrets, disk encryption keys) append. Define once at the root, extend at any level:
root:
tags: [production] # Inherited by all descendants
secrets: # Inherited by all descendants
- local_path: ./secrets/common.key
remote_path: /var/secrets/common.key
flakes:
infrastructure:
tags: [critical] # Accumulated: [production, critical]
secrets: # APPENDED to inherited secrets
- local_path: ./secrets/prod/api.key
remote_path: /var/secrets/api.key
configurations:
webserver:
tags: [web] # Accumulated: [production, critical, web]
machines:
web-01: # Accumulated: [production, critical, web, web-01]
web-02:
secrets: # APPENDED to all inherited secrets
- local_path: ./secrets/web-02/cert.pem
remote_path: /etc/ssl/cert.pem
Bootstrap: From Nothing to NixOS
The bootstrap flow is where Panix distinguishes itself most clearly:
- Inspect phase detects the target OS; if not NixOS, kexec boots into a NixOS installer image
- Disko partitions disks according to your configuration
- Transfer system closure
- nixos-install lays down the system
- Reboot into your new NixOS system
machines:
bare-metal:
ssh:
hostname: 192.168.1.100
bootstrap:
disk_encryption_keys: # Transferred BEFORE disko runs
- local_path: ./secrets/luks.key
remote_path: /tmp/luks-key
post_bootstrap_hook: |
systemd-cryptenroll --tpm2-device=auto /dev/nvme0n1p2
The post_bootstrap_hook runs after disko but before activation - perfect for enrolling TPM for disk encryption, something that requires the disks to be partitioned but the system not yet activated.
[!WARNING]
Needs testing.
Multi-Flake Deployments
Your infrastructure may span multiple flakes/repositories. Panix treats this as a first-class concern:
root:
flakes:
infrastructure:
url: path:../infra-flake
configurations:
servers:
machines:
server-01:
server-02:
monitoring:
url: github:myorg/monitoring-flake
configurations:
prometheus:
machines:
prom-01:
secrets-management:
url: git+ssh://git@github.com/myorg/vault-nixos
configurations:
vault:
machines:
vault-01:
With this you get complete visibility across your entire infrastructure. Each flake builds independently, each configuration deduplicates builds across its machines.
Feature Deep Dive
Real-Time TUI

The stats table shows you what matters:
- architecture (for cross-compilation awareness)
- generation (for rollback context)
- NixOS version
- kernel version
Click and navigate (left/right keys) to any machine to filter build logs. This also works for phase status.
Keybinds
| Key |
Action |
r |
Retry failed phases |
ctrl+r |
Restart entire workflow |
m |
Toggle logs fullscreen (make any build logs label or command output in build logs fullscrean for easier reading) |
ctrl-c |
Copy active build logs label or command output to clipboard |
c |
Toggle labels between descriptions and raw commands |
h |
Toggle to include inspect and secrets phases in the build logs |
a |
Show only active/errored build logs |
left/right |
Navigate between stats table or phase status entrys |
mouse click |
Select and entry from stats table, phase status, build logs command label or command output |
mouse scroll/up/down |
Allows scrolling main view or an inner view when selected (eg. command output) |
q |
Quit |
Tag-Based Filtering
Every name (flake, configuration, machine) is automatically a tag. Tags accumulate through inheritance. Deploy subsets of your infrastructure:
panix --tags production # All production-tagged machines
panix --tags webserver # All machines under webserver config
panix --tags server-01 # Single machine
SSH Config Integration
Panix reads ~/.ssh/config. If your machine name matches a host alias:
machines:
production-server-01: # Uses SSH config: Host, Port, User, IdentityFile
No duplication. Your SSH config is the source of truth for connection parameters.
If you don't use SSH config or need to add/change something temporarily you can specify SSH options directly:
machines:
my-server:
ssh:
hostname: 192.168.1.100
port: 2222
username: admin
identity_file: ./keys/server.key
disable_strict_key_checking: true # Useful for bootstrapping fresh machines
Local Machine Detection
Deploying to the machine you're on? If the machine name matches the system hostname, Panix skips SSH entirely - executing commands directly via shell:
# On a machine with hostname "workstation"
machines:
workstation: # Detected as local, no SSH
CI/CD ready
# Exit when complete, fail fast on any error
panix --exit-on-complete --require-all-success
# Dry run: show what would happen
panix --dry-run
# Dry run with real status queries (inspects machines, doesn't build/transfer)
panix --dry-run-with-status
IDE Support
You can directly reference the YAML schema for autocompletion and validation:
# yaml-language-server: $schema=https://raw.githubusercontent.com/mihakrumpestar/panix/main/gen/panix-schema.yaml
...
Or you can generate it localy:
panix schema
and reference it:
# yaml-language-server: $schema=./panix-schema.yaml
...
Installation
Run directly:
nix run github:mihakrumpestar/panix -- deploy
Add to your flake:
inputs.panix.url = "github:mihakrumpestar/panix";
and then reference it as:
panix.packages."${system}".panix
Quick Start
Note: Remote requires SSH key authentication (key file must be without password, unless you are using an SSH agent). Password authentication is not supported.
1. SSH Authentication
If you have only password auth (you booted NixOS ISO), create and add a temporary key to remote with the following commands:
# On remote (set password for root user)
sudo passwd
export REMOTE=<host>
# Generate key pair
ssh-keygen -t ed25519 -f ./temp_key -C "temporary_deployment_key" -N ""
# Copy key to remote (with disabled SSH agent to prevent trying to auth with keys in agent)
SSH_AUTH_SOCK="" ssh-copy-id -i ./temp_key.pub root@$REMOTE
You now may test the login with:
ssh -i ./temp_key -o IdentitiesOnly=yes root@$REMOTE
Now you can get (for example) the hardware config:
nixos-generate-config --no-filesystems --show-hardware-config
# or on non-NixOS installs
nix-shell -p nixos-install-tools --command "nixos-generate-config --no-filesystems --show-hardware-config"
3. Create panix.yml
root:
flakes:
my-config:
url: path:./my-nixos-flake
configurations:
my-server:
machines:
my-server:
ssh:
hostname: 192.168.1.100
4. Deploy
panix
Configuration Reference
Here is an example, but for all options check panix-schema.yaml:
# yaml-language-server: $schema=https://raw.githubusercontent.com/mihakrumpestar/panix/main/gen/panix-schema.yaml
flags:
timeout: 2h
exit_on_complete: false
require_all_success: false
skip_phases: []
override_local_machine: my-laptop
root:
tags: [production]
secrets:
- local_path: ./secrets/common.key
remote_path: /var/secrets/common.key
uid: 0
gid: 0
flakes:
infrastructure:
url: path:../infra-flake
tags: [critical]
configurations:
webserver:
tags:
- web
machines:
web-01:
ssh:
hostname: 10.0.0.1
web-02:
ssh:
hostname: web-02.example.com
identity_file: ./keys/web-02.key
database:
machines:
db-01:
bootstrap:
disk_encryption_keys:
- local_path: ./secrets/db/luks.key
remote_path: /tmp/luks-key
post_bootstrap_hook: |
systemd-cryptenroll --tpm2-device=auto /dev/sda2
monitoring:
url: github:myorg/monitoring#main
configurations:
prometheus:
machines:
prom-01:
Requirements & Caveats
- nix: Panix uses
nix that it finds in PATH, it also uses commands like nc, uname, id, echo, cat, readlink, stat, curl and tar
- rsync: Required on both local and remote for file transfers (included in
kexec images)
- POSIX shell: for certain operations, local and remote default shell must be POSIX-compliant (eg. not
Fish)
- kexec memory: Minimum 1GB RAM without swap for
kexec bootstrap
- nix store locking: nix does not allow writing to store by more than one at a time, so some builds may have a
waiting for store lock warning for a brief time until the lock is lifted
- ssh key auth: only ssh key auth is supported, no password auth
- flake only: only flakes are supported
Contributing
Contributions are welcome! Whether it's bug reports, feature requests, constructive criticism, or pull requests - all feedback is appreciated. See CONTRIBUTING.md.
License
AGPL-3.0 - see LICENSE.
If Panix has improved your deployment workflow, consider giving it a star.