Self-hosted Firefly III with data-importer, SQLite backend, behind nginx with the existing internal.hoyer.world ACME cert.
24 lines
522 B
Nix
24 lines
522 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
sops.secrets.internetbs = {
|
|
sopsFile = ../../../.secrets/sgx/internetbs.yaml; # bring your own password file
|
|
};
|
|
|
|
metacfg.services.acmeBase.credentialsFile = config.sops.secrets.internetbs.path;
|
|
|
|
security.acme.certs = {
|
|
"internal.hoyer.world" = {
|
|
extraDomainNames = [
|
|
"openwebui.hoyer.world"
|
|
"syncthing.hoyer.world"
|
|
"home.hoyer.world"
|
|
"status.hoyer.world"
|
|
"firefly.hoyer.world"
|
|
"firefly-import.hoyer.world"
|
|
];
|
|
};
|
|
};
|
|
}
|