mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-09 13:24:38 -05:00
41 lines
638 B
Nix
Executable file
41 lines
638 B
Nix
Executable file
{ moduleFunctions }:
|
|
let
|
|
inherit (moduleFunctions.instancesFunctions)
|
|
domain3
|
|
sslPath
|
|
sopsPath
|
|
;
|
|
|
|
label = "upRootNutrition";
|
|
name = "uprootnutrition";
|
|
in
|
|
{
|
|
label = label;
|
|
name = name;
|
|
short = "upRoot";
|
|
email = {
|
|
address0 = "nick@${domain3}";
|
|
};
|
|
sops = {
|
|
path0 = "${sopsPath}/${name}";
|
|
};
|
|
domains = {
|
|
url0 = domain3;
|
|
};
|
|
tags = [
|
|
name
|
|
"blog"
|
|
];
|
|
paths = {
|
|
path0 = "/var/lib/website/dist";
|
|
path1 = "";
|
|
path2 = "";
|
|
};
|
|
ports = {
|
|
port0 = 1234;
|
|
};
|
|
ssl = {
|
|
cert = "${sslPath}/${domain3}/fullchain.pem";
|
|
key = "${sslPath}/${domain3}/key.pem";
|
|
};
|
|
}
|