dotfiles/modules/config/instances/config/nginx.nix
2025-06-09 17:58:30 -05:00

19 lines
266 B
Nix
Executable file

{ instancesFunctions }:
let
inherit (instancesFunctions)
sopsPath
;
nginxLabel = "Nginx";
nginxName = "nginx";
in
{
label = nginxLabel;
name = nginxName;
sops = {
path0 = "${sopsPath}/${nginxName}";
};
ports = {
port0 = 8080;
};
}