mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 09:35:12 -05:00
19 lines
266 B
Nix
Executable file
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;
|
|
};
|
|
}
|