mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-10 05:44:38 -05:00
19 lines
277 B
Nix
Executable file
19 lines
277 B
Nix
Executable file
{ moduleFunctions }:
|
|
let
|
|
inherit (moduleFunctions.instancesFunctions)
|
|
sopsPath
|
|
;
|
|
|
|
label = "Synology";
|
|
name = "synology";
|
|
in
|
|
{
|
|
label = label;
|
|
name = name;
|
|
sops = {
|
|
path0 = "${sopsPath}/${name}";
|
|
};
|
|
ports = {
|
|
port0 = 5001; # Synology HTTPS
|
|
};
|
|
}
|