nixcfg/systems/x86_64-linux/sgx/acme.nix
Harald Hoyer f4eb0c5939 feat(sgx): add firefly-iii personal finance manager
Self-hosted Firefly III with data-importer, SQLite backend, behind
nginx with the existing internal.hoyer.world ACME cert.
2026-04-26 14:09:40 +02:00

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"
];
};
};
}