forked from Fediversity/Fediversity
12 lines
281 B
Nix
12 lines
281 B
Nix
{
|
|
targetMachines = [
|
|
"ssh"
|
|
];
|
|
# stablize path, as just the path would yield distinct paths when applied multiple times
|
|
pathToRoot = builtins.path {
|
|
path = ../../..;
|
|
name = "root";
|
|
};
|
|
pathFromRoot = "/deployment/check/data-model-ssh";
|
|
enableAcme = true;
|
|
}
|