mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 10:35:13 -05:00
18 lines
306 B
Nix
Executable file
18 lines
306 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
|
|
};
|
|
}
|