mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-12 14:54:38 -05:00
33 lines
605 B
Nix
Executable file
33 lines
605 B
Nix
Executable file
{ instancesFunctions }:
|
|
let
|
|
inherit (instancesFunctions)
|
|
domain3
|
|
sslPath
|
|
sopsPath
|
|
;
|
|
|
|
upRootNutritionLabel = "upRootNutrition";
|
|
upRootNutritionName = "uprootnutrition";
|
|
in
|
|
{
|
|
label = upRootNutritionLabel;
|
|
name = upRootNutritionName;
|
|
email = {
|
|
address0 = "nick@${domain3}";
|
|
};
|
|
sops = {
|
|
path0 = "${sopsPath}/${upRootNutritionName}";
|
|
};
|
|
paths = {
|
|
path0 = "/var/lib/website/dist";
|
|
path1 = "";
|
|
path2 = "";
|
|
};
|
|
ports = {
|
|
port0 = 1234;
|
|
};
|
|
ssl = {
|
|
cert = "${sslPath}/${domain3}/fullchain.pem";
|
|
key = "${sslPath}/${domain3}/key.pem";
|
|
};
|
|
}
|