2024-11-19 21:36:38 -05:00
|
|
|
|
# *Aἰθήρ*
|
|
|
|
|
|
|
|
|
|
> [*Aither*] as a whole neither came into being nor admits of destruction,
|
|
|
|
|
> but is one and eternal, with no end or beginning of its total
|
|
|
|
|
> duration, containing and embracing in itself the infinity of time ...
|
|
|
|
|
>
|
|
|
|
|
> — Aristotle, *On the Heavens* [^1]
|
|
|
|
|
|
|
|
|
|
Aether is a fully automated web server configured via **pure** and
|
|
|
|
|
**declarative** package management, powered by [NixOS](https://nixos.org).
|
|
|
|
|
This allows for all aspects of the server's operation, including config files,
|
|
|
|
|
software dependencies, and site content to be deployed and provisioned
|
|
|
|
|
automatically.
|
|
|
|
|
|
|
|
|
|
In short, it's my personal web server.
|
|
|
|
|
|
2024-11-19 22:35:21 -05:00
|
|
|
|
## Modules
|
|
|
|
|
|
2024-11-20 02:08:31 -05:00
|
|
|
|
As with all good NixOS configurations, Aether is split into *modules* that
|
|
|
|
|
each provide different functionality. These are stored in the `modules/` directory.
|
2024-11-19 22:35:21 -05:00
|
|
|
|
|
|
|
|
|
### Module Checklist
|
2024-11-19 21:36:38 -05:00
|
|
|
|
|
2024-11-22 18:21:04 -05:00
|
|
|
|
- [x] `basic` - Basic Internet support
|
2024-11-20 02:08:31 -05:00
|
|
|
|
- [x] `ssh` - SSH configuration
|
2024-11-20 02:54:05 -05:00
|
|
|
|
- [ ] `site` - Static site hosting
|
2024-11-19 22:35:21 -05:00
|
|
|
|
- [x] `fail2ban` - IP moderation
|
2024-11-20 02:54:05 -05:00
|
|
|
|
- [x] `forgejo` - Code forge
|
2024-11-19 22:35:21 -05:00
|
|
|
|
- [ ] `mail` - Mail server
|
|
|
|
|
- [ ] `cachix` - Nix build caching
|
2024-11-20 02:54:05 -05:00
|
|
|
|
- [ ] `backup` - Automated backup system
|
2024-11-19 21:36:38 -05:00
|
|
|
|
|
2024-11-20 02:08:31 -05:00
|
|
|
|
## Deployment
|
|
|
|
|
|
|
|
|
|
Aether is designed to separate individual machine details from the abstract
|
2024-11-20 02:36:49 -05:00
|
|
|
|
specification of the system, allowing for its code to be used for many
|
|
|
|
|
different types of system. This is handled using *deployments* in the
|
|
|
|
|
`deploy/` directory.
|
2024-11-20 02:08:31 -05:00
|
|
|
|
|
|
|
|
|
Currently, I deploy Aether physically to a
|
|
|
|
|
[Raspberry Pi 5](https://wiki.nixos.org/wiki/NixOS_on_ARM/Raspberry_Pi_5)
|
|
|
|
|
running a [modified UEFI bootloader](https://github.com/worproject/rpi5-uefi)
|
|
|
|
|
to provide Linux support. The NixOS code for this can be found in `deploy/rpi5/`.
|
|
|
|
|
|
|
|
|
|
## External Usage
|
|
|
|
|
|
|
|
|
|
If you use NixOS and are interested in any of these modules, you can import
|
|
|
|
|
them for your own config!
|
|
|
|
|
|
|
|
|
|
Add this repository as a flake input:
|
|
|
|
|
|
|
|
|
|
``` nix
|
|
|
|
|
{
|
|
|
|
|
inputs.aether.url = "https://git.tokinanpa.dev/toki/aether/archive/main.tar.gz";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Aether modules are then exposed under `nixosModules.<name>` and deployments
|
|
|
|
|
under `nixosModules.deploy-<name>`. You can activate a module by adding it
|
|
|
|
|
to your `imports`:
|
|
|
|
|
|
|
|
|
|
``` nix
|
|
|
|
|
{
|
|
|
|
|
imports = with aether.nixosModules; [
|
|
|
|
|
# Deployment
|
|
|
|
|
deploy-rpi5
|
|
|
|
|
# Modules
|
|
|
|
|
forgejo
|
|
|
|
|
ssh
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# Required by forgejo module
|
|
|
|
|
aether.domain = "...";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2024-11-20 02:36:49 -05:00
|
|
|
|
Any number of modules can be activated at once, and the special
|
|
|
|
|
`nixosModules.aether` output can be used to refer to every module at once.
|
|
|
|
|
Activating more than one deployment will cause issues, so that should be
|
|
|
|
|
avoided.
|
2024-11-20 02:08:31 -05:00
|
|
|
|
|
|
|
|
|
Some modules have options that can be used to configure their effects. If a
|
|
|
|
|
module has options, they can be found in the `options.nix` file inside the
|
|
|
|
|
module directory. More general options used by multiple modules are
|
|
|
|
|
documented in `modules/options.nix`.
|
|
|
|
|
|
2024-11-19 21:36:38 -05:00
|
|
|
|
[^1]: Adapted from [Book II.1](http://classics.mit.edu/Aristotle/heavens.2.ii.html).
|