meta/architecture-docs/NixDefinitions.md

30 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2024-06-20 15:38:44 +02:00
# NixDefinitions
NixDefinitions is a layer of NixOS modules that exposes a simple interface of a few options (e.g. what services to run, domain names), and turns that into a full description of all the systems that need to be running.
2024-06-20 15:38:44 +02:00
## Where it's situated
![](./architecture.png)
### [NixConfigs](./NixConfigs.md)
NixConfigs sets the few options exposed by NixDefinitions.
2024-06-20 15:38:44 +02:00
### [NixOS Instances](./NixOS_Instances.md) & [Services](./Services.md)
The combination of NixConfigs and NixDefintions produces a detailed description of the Services and other system setup that should be running on the NixOS instances.
### [NixOps](./NixOps.md)
NixOps consumes the combined NixConfigs/NixDefintions system description to know what the system should look like when deployed.
2024-06-20 15:38:44 +02:00
### [NixGuard](./NixGuard.md)
NixGuard compares the state of NixConfigs/NixDefinitions to the running state to detect inconsistent state and either fix or report it.
2024-06-20 15:38:44 +02:00
## Purpose
NixDefinitions...
- simplifies the job of NixPanel, allowing it to not worry at all about **how** machines work, but simply produce a machine-readable translation of the options set by Administrators.
2024-06-20 15:38:44 +02:00
- factors out the system configuration that is common between any Fediversity system, defining a simple set of parameters that might differ between them.