fe6a37ccf5937d6d084b7e3c0d94d6af192eecf8
this is necessary to be able to apply changes in the nix conf to the datadir after it got setup
ep3-bs.nix
This flake aims to provide a nixosModule that handles running an ep3-bs instance.
What does it look like?
Here is a minimal configuration:
{
services.ep3-bs.enable = true;
services.ep3-bs.mail.address = "test@test.de";
}
Now you can access ep3-bs using your browser. You will be guided through the database setup in the frontend. Afterwards you have to manually delete the setup.php. This only has to be done once on the initial setup.
It can be done as root with:
rm /var/lib/ep3-bs/public/setup.php
If there is a better solution using nix, please let me know.
Installation
Using flakes
Add ep3-bs as input:
{
# ...
inputs.ep3-bs.url = github:kalipso/ep3-bs.nix;
}
Description
Languages
Nix
100%