mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
19 lines
304 B
Nix
Executable file
19 lines
304 B
Nix
Executable file
{ instancesFunctions }:
|
|
let
|
|
inherit (instancesFunctions)
|
|
sopsPath
|
|
;
|
|
|
|
synologyLabel = "Synology";
|
|
synologyName = "synology";
|
|
in
|
|
{
|
|
label = synologyLabel;
|
|
name = synologyName;
|
|
sops = {
|
|
path0 = "${sopsPath}/${synologyName}";
|
|
};
|
|
ports = {
|
|
port0 = 5001; # Synology HTTPS
|
|
};
|
|
}
|