mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-09 21:34:38 -05:00
26 lines
360 B
Nix
Executable file
26 lines
360 B
Nix
Executable file
{ moduleFunctions }:
|
|
let
|
|
inherit (moduleFunctions.instancesFunctions)
|
|
sopsPath
|
|
synologyName
|
|
;
|
|
|
|
label = "Synology";
|
|
name = synologyName;
|
|
in
|
|
{
|
|
label = label;
|
|
name = name;
|
|
short = "Nas";
|
|
tags = [
|
|
name
|
|
"dsm"
|
|
"cloud"
|
|
];
|
|
sops = {
|
|
path0 = "${sopsPath}/${name}";
|
|
};
|
|
ports = {
|
|
port0 = 5001; # Synology HTTPS
|
|
};
|
|
}
|