NixOS configuration managing a laptop and homelab server.
Features Secure Boot, full-disk encryption, declarative containers, zero-trust authentication, and automated backups. Fully documented with VitePress.
.
├── docs/ # VitePress documentation site
├── laptop/ # NixOS laptop configuration (flake-based)
│ ├── modules/ # Modular system configuration
│ ├── flake.nix
│ └── flake.lock
├── server/ # NixOS server configuration (flake-based)
│ ├── modules/ # Core system modules
│ ├── containers/ # Declarative OCI containers
│ ├── secrets/ # Age-encrypted secrets
│ ├── flake.nix
│ └── flake.lock
├── flake.nix # Top-level flake
├── flake.lock
└── README.md