Declarative NixOS fleet management - reproducible deployments, cryptographic security, and compliance automation.
| Repository | Description |
|---|---|
| nixfleet | Framework: mkHost API, Rust agent/control-plane/CLI, NixOS modules |
| nixfleet-scopes | Reusable infrastructure scopes, roles, and disk templates |
| nixfleet-compliance | 16 compliance controls, 4 regulatory frameworks (NIS2, DORA, ISO 27001, ANSSI) |
| nixfleet-demo | Reference fleet: 6 QEMU hosts demonstrating the full stack |
# flake.nix
{
inputs.nixfleet.url = "github:arcanesys/nixfleet";
outputs = { nixfleet, ... }:
nixfleet.lib.mkHost {
hostname = "web-01";
system = "x86_64-linux";
scopes = [ "base" "firewall" "monitoring" ];
role = "server";
};
}Documentation: arcanesys.github.io/nixfleet
NixFleet framework is dual-licensed MIT/AGPL. Companion repos (scopes, compliance, demo) are MIT.
