nix/host/x86_64-linux/home/Davis.nix
2025-01-09 15:39:05 +03:00

18 lines
372 B
Nix

{ ... }:
let
storage = "/storage/hot/data/davis"; # TODO: Move to config.
in
{
services.davis = {
enable = true;
adminPasswordFile = "${storage}/Password";
appSecretFile = "${storage}/Secret";
hostname = "dav.voronind.com";
nginx = { };
mail = {
dsnFile = "${storage}/Dsn";
inviteFromAddress = "noreply@voronind.com";
};
};
}