dotfiles/modules/config/instances/config/synology.nix
2025-03-29 23:08:26 -05:00

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
};
}